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