C:
char c = '\u1094';
printf("%c\n", c); // Output: ႔
JavaScript:
const char = '\u1094';
console.log(char); // Output: ႔
Java:
char c = '\u1094';
System.out.println(c); // Output: ႔
JSON:
{"text": "\u1094"} // Value: ႔
Python:
char = '\u1094'
print(char) # Output: ႔
Perl:
my $char = "\x{1094}";
print $char; # Output: ႔
PHP:
$char = "\x{1094}";
echo $char; // Output: ႔
Ruby:
char = "\u{1094}"
puts char # Output: ႔
Rust:
let c = '\u{1094}';
println!("{}", c); // Output: ႔
Go:
char := '\u1094'
fmt.Printf("%c\n", char) // Output: ႔
CSS:
/* CSS content property */
.element::before {
content: "\001094"; /* 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%94
MD5:
c037b125b09e967ee4193a3c0ed9b8ce
SHA1:
12e94dee785af72d765d44bdfa06d032cf3f1ae4
Base64:
4YKU