C:
char c = '\u1022';
printf("%c\n", c); // Output: ဢ
JavaScript:
const char = '\u1022';
console.log(char); // Output: ဢ
Java:
char c = '\u1022';
System.out.println(c); // Output: ဢ
JSON:
{"text": "\u1022"} // Value: ဢ
Python:
char = '\u1022'
print(char) # Output: ဢ
Perl:
my $char = "\x{1022}";
print $char; # Output: ဢ
PHP:
$char = "\x{1022}";
echo $char; // Output: ဢ
Ruby:
char = "\u{1022}"
puts char # Output: ဢ
Rust:
let c = '\u{1022}';
println!("{}", c); // Output: ဢ
Go:
char := '\u1022'
fmt.Printf("%c\n", char) // Output: ဢ
CSS:
/* CSS content property */
.element::before {
content: "\001022"; /* 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%A2
MD5:
219d41e9d28a453926c219a499d116e5
SHA1:
fe2fb119d4f9a1936b379c7d34907ed83b59210e
Base64:
4YCi