C:
char c = '\u1024';
printf("%c\n", c); // Output: ဤ
JavaScript:
const char = '\u1024';
console.log(char); // Output: ဤ
Java:
char c = '\u1024';
System.out.println(c); // Output: ဤ
JSON:
{"text": "\u1024"} // Value: ဤ
Python:
char = '\u1024'
print(char) # Output: ဤ
Perl:
my $char = "\x{1024}";
print $char; # Output: ဤ
PHP:
$char = "\x{1024}";
echo $char; // Output: ဤ
Ruby:
char = "\u{1024}"
puts char # Output: ဤ
Rust:
let c = '\u{1024}';
println!("{}", c); // Output: ဤ
Go:
char := '\u1024'
fmt.Printf("%c\n", char) // Output: ဤ
CSS:
/* CSS content property */
.element::before {
content: "\001024"; /* 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%A4
MD5:
114b904e8bb4261700aa55f6abfa08aa
SHA1:
cbd4ae47ca5dee39cb0cb086a1f785a9b4009209
Base64:
4YCk