C:
char c = '\u1082';
printf("%c\n", c); // Output: ႂ
JavaScript:
const char = '\u1082';
console.log(char); // Output: ႂ
Java:
char c = '\u1082';
System.out.println(c); // Output: ႂ
JSON:
{"text": "\u1082"} // Value: ႂ
Python:
char = '\u1082'
print(char) # Output: ႂ
Perl:
my $char = "\x{1082}";
print $char; # Output: ႂ
PHP:
$char = "\x{1082}";
echo $char; // Output: ႂ
Ruby:
char = "\u{1082}"
puts char # Output: ႂ
Rust:
let c = '\u{1082}';
println!("{}", c); // Output: ႂ
Go:
char := '\u1082'
fmt.Printf("%c\n", char) // Output: ႂ
CSS:
/* CSS content property */
.element::before {
content: "\001082"; /* 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%82
MD5:
775f42d43ec216c2c384c495f46ec2b4
SHA1:
0ede044b9bd5057b7be85d9afc20a1e94f9f1f92
Base64:
4YKC