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