C:
char c = '\u108C';
printf("%c\n", c); // Output: ႌ
JavaScript:
const char = '\u108C';
console.log(char); // Output: ႌ
Java:
char c = '\u108C';
System.out.println(c); // Output: ႌ
JSON:
{"text": "\u108C"} // Value: ႌ
Python:
char = '\u108C'
print(char) # Output: ႌ
Perl:
my $char = "\x{108C}";
print $char; # Output: ႌ
PHP:
$char = "\x{108C}";
echo $char; // Output: ႌ
Ruby:
char = "\u{108C}"
puts char # Output: ႌ
Rust:
let c = '\u{108C}';
println!("{}", c); // Output: ႌ
Go:
char := '\u108C'
fmt.Printf("%c\n", char) // Output: ႌ
CSS:
/* CSS content property */
.element::before {
content: "\00108C"; /* 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%82%8C
MD5:
a92264d866294eab6e034a01b0888c1e
SHA1:
9ea388f0376309addb7009c442c5d4b36ccfa723
Base64:
4YKM