C:
char c = '\u1C21';
printf("%c\n", c); // Output: ᰡ
JavaScript:
const char = '\u1C21';
console.log(char); // Output: ᰡ
Java:
char c = '\u1C21';
System.out.println(c); // Output: ᰡ
JSON:
{"text": "\u1C21"} // Value: ᰡ
Python:
char = '\u1C21'
print(char) # Output: ᰡ
Perl:
my $char = "\x{1C21}";
print $char; # Output: ᰡ
PHP:
$char = "\x{1C21}";
echo $char; // Output: ᰡ
Ruby:
char = "\u{1C21}"
puts char # Output: ᰡ
Rust:
let c = '\u{1C21}';
println!("{}", c); // Output: ᰡ
Go:
char := '\u1C21'
fmt.Printf("%c\n", char) // Output: ᰡ
CSS:
/* CSS content property */
.element::before {
content: "\001C21"; /* 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%B0%A1
MD5:
c14e3ae197b60ccd648871e6c8b87bef
SHA1:
35831a725eecb50badb2d00d85612da31cb71a7b
Base64:
4bCh