C:
char c = '\u1012';
printf("%c\n", c); // Output: ဒ
JavaScript:
const char = '\u1012';
console.log(char); // Output: ဒ
Java:
char c = '\u1012';
System.out.println(c); // Output: ဒ
JSON:
{"text": "\u1012"} // Value: ဒ
Python:
char = '\u1012'
print(char) # Output: ဒ
Perl:
my $char = "\x{1012}";
print $char; # Output: ဒ
PHP:
$char = "\x{1012}";
echo $char; // Output: ဒ
Ruby:
char = "\u{1012}"
puts char # Output: ဒ
Rust:
let c = '\u{1012}';
println!("{}", c); // Output: ဒ
Go:
char := '\u1012'
fmt.Printf("%c\n", char) // Output: ဒ
CSS:
/* CSS content property */
.element::before {
content: "\001012"; /* 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%80%92
MD5:
90c7050ede49fead8b7f1f294a8c0352
SHA1:
5030770bcf09ea9a6d8fbd98e3d6ea327465d664
Base64:
4YCS