C:
char c = '\u122F';
printf("%c\n", c); // Output: ሯ
JavaScript:
const char = '\u122F';
console.log(char); // Output: ሯ
Java:
char c = '\u122F';
System.out.println(c); // Output: ሯ
JSON:
{"text": "\u122F"} // Value: ሯ
Python:
char = '\u122F'
print(char) # Output: ሯ
Perl:
my $char = "\x{122F}";
print $char; # Output: ሯ
PHP:
$char = "\x{122F}";
echo $char; // Output: ሯ
Ruby:
char = "\u{122F}"
puts char # Output: ሯ
Rust:
let c = '\u{122F}';
println!("{}", c); // Output: ሯ
Go:
char := '\u122F'
fmt.Printf("%c\n", char) // Output: ሯ
CSS:
/* CSS content property */
.element::before {
content: "\00122F"; /* Display: ሯ */
}
HTML Decimal:
<p>HTML decimal: ሯ</p> <!-- Display: ሯ -->
HTML Hexadecimal:
<p>HTML hex: ሯ</p> <!-- Display: ሯ -->
URL Encoding:
// ሯ URL encoding
https://unicodefinder.com/search.php?query=%E1%88%AF
MD5:
ee495229fc5de21f9ab138412b188378
SHA1:
4871269e97aa35dbaa0a69759827173520578aef
Base64:
4Yiv