C:
char c = '\u1622';
printf("%c\n", c); // Output: ᘢ
JavaScript:
const char = '\u1622';
console.log(char); // Output: ᘢ
Java:
char c = '\u1622';
System.out.println(c); // Output: ᘢ
JSON:
{"text": "\u1622"} // Value: ᘢ
Python:
char = '\u1622'
print(char) # Output: ᘢ
Perl:
my $char = "\x{1622}";
print $char; # Output: ᘢ
PHP:
$char = "\x{1622}";
echo $char; // Output: ᘢ
Ruby:
char = "\u{1622}"
puts char # Output: ᘢ
Rust:
let c = '\u{1622}';
println!("{}", c); // Output: ᘢ
Go:
char := '\u1622'
fmt.Printf("%c\n", char) // Output: ᘢ
CSS:
/* CSS content property */
.element::before {
content: "\001622"; /* 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%98%A2
MD5:
fae181e2f6b49b6dccd121e30c6ef897
SHA1:
b134051bb866d5993aaa9db3ff4182ed8ca98c88
Base64:
4Zii