C:
char c = '\u1421';
printf("%c\n", c); // Output: ᐡ
JavaScript:
const char = '\u1421';
console.log(char); // Output: ᐡ
Java:
char c = '\u1421';
System.out.println(c); // Output: ᐡ
JSON:
{"text": "\u1421"} // Value: ᐡ
Python:
char = '\u1421'
print(char) # Output: ᐡ
Perl:
my $char = "\x{1421}";
print $char; # Output: ᐡ
PHP:
$char = "\x{1421}";
echo $char; // Output: ᐡ
Ruby:
char = "\u{1421}"
puts char # Output: ᐡ
Rust:
let c = '\u{1421}';
println!("{}", c); // Output: ᐡ
Go:
char := '\u1421'
fmt.Printf("%c\n", char) // Output: ᐡ
CSS:
/* CSS content property */
.element::before {
content: "\001421"; /* 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%90%A1
MD5:
4948c403446eb96bcb01a8ec00ff1bde
SHA1:
1d14a4d176286f603b8218ee36c4ba0810e39618
Base64:
4ZCh