C:
char c = '\u1098';
printf("%c\n", c); // Output: ႘
JavaScript:
const char = '\u1098';
console.log(char); // Output: ႘
Java:
char c = '\u1098';
System.out.println(c); // Output: ႘
JSON:
{"text": "\u1098"} // Value: ႘
Python:
char = '\u1098'
print(char) # Output: ႘
Perl:
my $char = "\x{1098}";
print $char; # Output: ႘
PHP:
$char = "\x{1098}";
echo $char; // Output: ႘
Ruby:
char = "\u{1098}"
puts char # Output: ႘
Rust:
let c = '\u{1098}';
println!("{}", c); // Output: ႘
Go:
char := '\u1098'
fmt.Printf("%c\n", char) // Output: ႘
CSS:
/* CSS content property */
.element::before {
content: "\001098"; /* 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%98
MD5:
93c46da1d83cffa59bf956b645f5c955
SHA1:
c92fa85fa3803eb7f08a17e35a175a5fb1964f59
Base64:
4YKY