C:
char c = '\u1100';
printf("%c\n", c); // Output: ᄀ
JavaScript:
const char = '\u1100';
console.log(char); // Output: ᄀ
Java:
char c = '\u1100';
System.out.println(c); // Output: ᄀ
JSON:
{"text": "\u1100"} // Value: ᄀ
Python:
char = '\u1100'
print(char) # Output: ᄀ
Perl:
my $char = "\x{1100}";
print $char; # Output: ᄀ
PHP:
$char = "\x{1100}";
echo $char; // Output: ᄀ
Ruby:
char = "\u{1100}"
puts char # Output: ᄀ
Rust:
let c = '\u{1100}';
println!("{}", c); // Output: ᄀ
Go:
char := '\u1100'
fmt.Printf("%c\n", char) // Output: ᄀ
CSS:
/* CSS content property */
.element::before {
content: "\001100"; /* 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%84%80
MD5:
eab524863c3035c3587be8035f9f129f
SHA1:
fcc7268b8ddb296def4e4bd31e1f08c1531cb7f4
Base64:
4YSA