C:
char c = '\u1081';
printf("%c\n", c); // Output: ႁ
JavaScript:
const char = '\u1081';
console.log(char); // Output: ႁ
Java:
char c = '\u1081';
System.out.println(c); // Output: ႁ
JSON:
{"text": "\u1081"} // Value: ႁ
Python:
char = '\u1081'
print(char) # Output: ႁ
Perl:
my $char = "\x{1081}";
print $char; # Output: ႁ
PHP:
$char = "\x{1081}";
echo $char; // Output: ႁ
Ruby:
char = "\u{1081}"
puts char # Output: ႁ
Rust:
let c = '\u{1081}';
println!("{}", c); // Output: ႁ
Go:
char := '\u1081'
fmt.Printf("%c\n", char) // Output: ႁ
CSS:
/* CSS content property */
.element::before {
content: "\001081"; /* 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%81
MD5:
c77843c3da0c5efdc130ac40e59cd0ed
SHA1:
1482069a698ecaa23d6b0a6663cbf81e4d6c5f2c
Base64:
4YKB