C:
char c = '\u1088';
printf("%c\n", c); // Output: ႈ
JavaScript:
const char = '\u1088';
console.log(char); // Output: ႈ
Java:
char c = '\u1088';
System.out.println(c); // Output: ႈ
JSON:
{"text": "\u1088"} // Value: ႈ
Python:
char = '\u1088'
print(char) # Output: ႈ
Perl:
my $char = "\x{1088}";
print $char; # Output: ႈ
PHP:
$char = "\x{1088}";
echo $char; // Output: ႈ
Ruby:
char = "\u{1088}"
puts char # Output: ႈ
Rust:
let c = '\u{1088}';
println!("{}", c); // Output: ႈ
Go:
char := '\u1088'
fmt.Printf("%c\n", char) // Output: ႈ
CSS:
/* CSS content property */
.element::before {
content: "\001088"; /* 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%88
MD5:
3bfa9eb163b6fb60ca38cb3bf93088a6
SHA1:
d22ede60ac5acb92ed6fccef76cae40f2389f8b1
Base64:
4YKI