C:
char c = '\u1003';
printf("%c\n", c); // Output: ဃ
JavaScript:
const char = '\u1003';
console.log(char); // Output: ဃ
Java:
char c = '\u1003';
System.out.println(c); // Output: ဃ
JSON:
{"text": "\u1003"} // Value: ဃ
Python:
char = '\u1003'
print(char) # Output: ဃ
Perl:
my $char = "\x{1003}";
print $char; # Output: ဃ
PHP:
$char = "\x{1003}";
echo $char; // Output: ဃ
Ruby:
char = "\u{1003}"
puts char # Output: ဃ
Rust:
let c = '\u{1003}';
println!("{}", c); // Output: ဃ
Go:
char := '\u1003'
fmt.Printf("%c\n", char) // Output: ဃ
CSS:
/* CSS content property */
.element::before {
content: "\001003"; /* 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%83
MD5:
9ee90a8864d0060d6ab682b851e96cec
SHA1:
653c956e89f24d1d4c5cfc753beebebef68fd159
Base64:
4YCD