Open In App

Ruby | Symbol encoding function

Last Updated : 10 Dec, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

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 :




# Ruby code for Symbol.encoding() method
  
# declaring Symbol 
a = :aBcDeF
  
# declaring Symbol
b = :"\u{e4 f6 fc}"
  
# declaring Symbol
c = :ABCDEF
  
# Symbol 
puts "Symbol a : #{a}\n\n"
puts "Symbol b : #{b}\n\n"
puts "Symbol c : #{c}\n\n\n\n"
  
  
# encoding form 
puts "Symbol a encoding form : #{a.encoding}\n\n"
puts "Symbol b encoding form : #{b.encoding}\n\n"
puts "Symbol c encoding form : #{c.encoding}\n\n"


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 :




# Ruby code for Symbol.encoding() method
  
# declaring Symbol 
a = :geeks
  
# declaring Symbol
b = :"\u{e5 f6 f3}"
  
# declaring Symbol
c = :GEEKS
  
# Symbol 
puts "Symbol a : #{a}\n\n"
puts "Symbol b : #{b}\n\n"
puts "Symbol c : #{c}\n\n\n\n"
  
  
# encoding form 
puts "Symbol a encoding form : #{a.encoding}\n\n"
puts "Symbol b encoding form : #{b.encoding}\n\n"
puts "Symbol c encoding form : #{c.encoding}\n\n"


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


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads