C:
char c = '\u1095';
printf("%c\n", c); // Output: ႕
JavaScript:
const char = '\u1095';
console.log(char); // Output: ႕
Java:
char c = '\u1095';
System.out.println(c); // Output: ႕
JSON:
{"text": "\u1095"} // Value: ႕
Python:
char = '\u1095'
print(char) # Output: ႕
Perl:
my $char = "\x{1095}";
print $char; # Output: ႕
PHP:
$char = "\x{1095}";
echo $char; // Output: ႕
Ruby:
char = "\u{1095}"
puts char # Output: ႕
Rust:
let c = '\u{1095}';
println!("{}", c); // Output: ႕
Go:
char := '\u1095'
fmt.Printf("%c\n", char) // Output: ႕
CSS:
/* CSS content property */
.element::before {
content: "\001095"; /* 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%95
MD5:
4b85eff983b8e508d33ee7f65cbe9a66
SHA1:
bc5cb5a92a7f9961b62c6acdc583b2ba3bdfa937
Base64:
4YKV