C:
char c = '\u1099';
printf("%c\n", c); // Output: ႙
JavaScript:
const char = '\u1099';
console.log(char); // Output: ႙
Java:
char c = '\u1099';
System.out.println(c); // Output: ႙
JSON:
{"text": "\u1099"} // Value: ႙
Python:
char = '\u1099'
print(char) # Output: ႙
Perl:
my $char = "\x{1099}";
print $char; # Output: ႙
PHP:
$char = "\x{1099}";
echo $char; // Output: ႙
Ruby:
char = "\u{1099}"
puts char # Output: ႙
Rust:
let c = '\u{1099}';
println!("{}", c); // Output: ႙
Go:
char := '\u1099'
fmt.Printf("%c\n", char) // Output: ႙
CSS:
/* CSS content property */
.element::before {
content: "\001099"; /* 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%99
MD5:
157fa0932a1e47c3fa90658fe0cc7d03
SHA1:
9e80e2aa93e686f25ec56a0cf84d074cceea3059
Base64:
4YKZ