C:
char c = '\u1102';
printf("%c\n", c); // Output: ᄂ
JavaScript:
const char = '\u1102';
console.log(char); // Output: ᄂ
Java:
char c = '\u1102';
System.out.println(c); // Output: ᄂ
JSON:
{"text": "\u1102"} // Value: ᄂ
Python:
char = '\u1102'
print(char) # Output: ᄂ
Perl:
my $char = "\x{1102}";
print $char; # Output: ᄂ
PHP:
$char = "\x{1102}";
echo $char; // Output: ᄂ
Ruby:
char = "\u{1102}"
puts char # Output: ᄂ
Rust:
let c = '\u{1102}';
println!("{}", c); // Output: ᄂ
Go:
char := '\u1102'
fmt.Printf("%c\n", char) // Output: ᄂ
CSS:
/* CSS content property */
.element::before {
content: "\001102"; /* 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%82
MD5:
034afaf6896ba9b7b9d7c5df252eeaaf
SHA1:
8cea9e12356d2d11cf14fb8a975292eae8d95d33
Base64:
4YSC