C:
char c = '\u1096';
printf("%c\n", c); // Output: ႖
JavaScript:
const char = '\u1096';
console.log(char); // Output: ႖
Java:
char c = '\u1096';
System.out.println(c); // Output: ႖
JSON:
{"text": "\u1096"} // Value: ႖
Python:
char = '\u1096'
print(char) # Output: ႖
Perl:
my $char = "\x{1096}";
print $char; # Output: ႖
PHP:
$char = "\x{1096}";
echo $char; // Output: ႖
Ruby:
char = "\u{1096}"
puts char # Output: ႖
Rust:
let c = '\u{1096}';
println!("{}", c); // Output: ႖
Go:
char := '\u1096'
fmt.Printf("%c\n", char) // Output: ႖
CSS:
/* CSS content property */
.element::before {
content: "\001096"; /* 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%96
MD5:
25899906ca564c722a52552b33ae7b64
SHA1:
ba779f498cf8f64765282ed1066f8e16a5393110
Base64:
4YKW