VOOZH about

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

⇱ Ruby | Symbol encoding function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Ruby | Symbol encoding function

Last Updated : 10 Dec, 2019
Symbol#encoding() : encoding() is a Symbol class method which returns the Encoding object that represents the encoding of Symbol.
Syntax: Symbol.encoding() Parameter: Symbol values Return: the Encoding object that represents the encoding of Symbol.
Example #1 : Output :
Symbol a : aBcDeF

Symbol b : äöü

Symbol c : ABCDEF



Symbol a encoding form : US-ASCII

Symbol b encoding form : UTF-8

Symbol c encoding form : US-ASCII

Example #2 : Output :
Symbol a : geeks

Symbol b : åöó

Symbol c : GEEKS



Symbol a encoding form : US-ASCII

Symbol b encoding form : UTF-8

Symbol c encoding form : US-ASCII
Comment
Article Tags: