VOOZH about

URL: https://www.geeksforgeeks.org/ruby/ruby-symbol-inspect-function/

⇱ Ruby | Symbol inspect function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Ruby | Symbol inspect function

Last Updated : 10 Dec, 2019
Symbol#inspect() : inspect() is a Symbol class method which returns the string representation of the symbol value.
Syntax: Symbol.inspect() Parameter: Symbol values Return: the string representation of the symbol value.
Example #1 : Output :
Symbol a inspect form : :aBcDeF

Symbol b inspect form : :"\u00E4\u00F6\u00FC"

Symbol c inspect form : :ABCDEF

Example #2 : Output :
Symbol a inspect form : :geeks

Symbol b inspect form : :"\u00E5\u00F6\u00F3"

Symbol c inspect form : :GEEKS

Comment
Article Tags: