C:
char c = '\u1018';
printf("%c\n", c); // Output: ဘ
JavaScript:
const char = '\u1018';
console.log(char); // Output: ဘ
Java:
char c = '\u1018';
System.out.println(c); // Output: ဘ
JSON:
{"text": "\u1018"} // Value: ဘ
Python:
char = '\u1018'
print(char) # Output: ဘ
Perl:
my $char = "\x{1018}";
print $char; # Output: ဘ
PHP:
$char = "\x{1018}";
echo $char; // Output: ဘ
Ruby:
char = "\u{1018}"
puts char # Output: ဘ
Rust:
let c = '\u{1018}';
println!("{}", c); // Output: ဘ
Go:
char := '\u1018'
fmt.Printf("%c\n", char) // Output: ဘ
CSS:
/* CSS content property */
.element::before {
content: "\001018"; /* 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%98
MD5:
9449c4d63cc916e434bfdd04ffdffc8d
SHA1:
37f95a2059478400c9665967811b70767f7f903d
Base64:
4YCY