C:
char c = '\u1007';
printf("%c\n", c); // Output: ဇ
JavaScript:
const char = '\u1007';
console.log(char); // Output: ဇ
Java:
char c = '\u1007';
System.out.println(c); // Output: ဇ
JSON:
{"text": "\u1007"} // Value: ဇ
Python:
char = '\u1007'
print(char) # Output: ဇ
Perl:
my $char = "\x{1007}";
print $char; # Output: ဇ
PHP:
$char = "\x{1007}";
echo $char; // Output: ဇ
Ruby:
char = "\u{1007}"
puts char # Output: ဇ
Rust:
let c = '\u{1007}';
println!("{}", c); // Output: ဇ
Go:
char := '\u1007'
fmt.Printf("%c\n", char) // Output: ဇ
CSS:
/* CSS content property */
.element::before {
content: "\001007"; /* 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%87
MD5:
3a8872a8814c1eca442f60e7255e09f3
SHA1:
1401aef9ccdfd78b4739a9e9ca7348739411297e
Base64:
4YCH