C:
char c = '\u1101';
printf("%c\n", c); // Output: ᄁ
JavaScript:
const char = '\u1101';
console.log(char); // Output: ᄁ
Java:
char c = '\u1101';
System.out.println(c); // Output: ᄁ
JSON:
{"text": "\u1101"} // Value: ᄁ
Python:
char = '\u1101'
print(char) # Output: ᄁ
Perl:
my $char = "\x{1101}";
print $char; # Output: ᄁ
PHP:
$char = "\x{1101}";
echo $char; // Output: ᄁ
Ruby:
char = "\u{1101}"
puts char # Output: ᄁ
Rust:
let c = '\u{1101}';
println!("{}", c); // Output: ᄁ
Go:
char := '\u1101'
fmt.Printf("%c\n", char) // Output: ᄁ
CSS:
/* CSS content property */
.element::before {
content: "\001101"; /* 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%81
MD5:
7f3f46d49f112893f98520e8ee1bc252
SHA1:
ab8af06315a9417ad02b2d61d0e103427529ba7f
Base64:
4YSB