C:
char c = '\u1120';
printf("%c\n", c); // Output: ᄠ
JavaScript:
const char = '\u1120';
console.log(char); // Output: ᄠ
Java:
char c = '\u1120';
System.out.println(c); // Output: ᄠ
JSON:
{"text": "\u1120"} // Value: ᄠ
Python:
char = '\u1120'
print(char) # Output: ᄠ
Perl:
my $char = "\x{1120}";
print $char; # Output: ᄠ
PHP:
$char = "\x{1120}";
echo $char; // Output: ᄠ
Ruby:
char = "\u{1120}"
puts char # Output: ᄠ
Rust:
let c = '\u{1120}';
println!("{}", c); // Output: ᄠ
Go:
char := '\u1120'
fmt.Printf("%c\n", char) // Output: ᄠ
CSS:
/* CSS content property */
.element::before {
content: "\001120"; /* 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%A0
MD5:
38d4f95703de6303556cc7a941e91305
SHA1:
df7fa396b1c2fea5052b0875578675bd6433cbd3
Base64:
4YSg