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