C:
char c = '\u1092';
printf("%c\n", c); // Output: ႒
JavaScript:
const char = '\u1092';
console.log(char); // Output: ႒
Java:
char c = '\u1092';
System.out.println(c); // Output: ႒
JSON:
{"text": "\u1092"} // Value: ႒
Python:
char = '\u1092'
print(char) # Output: ႒
Perl:
my $char = "\x{1092}";
print $char; # Output: ႒
PHP:
$char = "\x{1092}";
echo $char; // Output: ႒
Ruby:
char = "\u{1092}"
puts char # Output: ႒
Rust:
let c = '\u{1092}';
println!("{}", c); // Output: ႒
Go:
char := '\u1092'
fmt.Printf("%c\n", char) // Output: ႒
CSS:
/* CSS content property */
.element::before {
content: "\001092"; /* 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%92
MD5:
e9b313e68fa3f051278009f32727b7f3
SHA1:
1919505b3ff1c2665c152e9aecd95220d181cfe7
Base64:
4YKS