C:
char c = '\u106A';
printf("%c\n", c); // Output: ၪ
JavaScript:
const char = '\u106A';
console.log(char); // Output: ၪ
Java:
char c = '\u106A';
System.out.println(c); // Output: ၪ
JSON:
{"text": "\u106A"} // Value: ၪ
Python:
char = '\u106A'
print(char) # Output: ၪ
Perl:
my $char = "\x{106A}";
print $char; # Output: ၪ
PHP:
$char = "\x{106A}";
echo $char; // Output: ၪ
Ruby:
char = "\u{106A}"
puts char # Output: ၪ
Rust:
let c = '\u{106A}';
println!("{}", c); // Output: ၪ
Go:
char := '\u106A'
fmt.Printf("%c\n", char) // Output: ၪ
CSS:
/* CSS content property */
.element::before {
content: "\00106A"; /* 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%81%AA
MD5:
e8562ff6bd65b66c5c9be0318f22416d
SHA1:
a87af50b2ce6a62e093c6df5286f0c2ae9f1e20f
Base64:
4YGq