C:
char c = '\u1424';
printf("%c\n", c); // Output: ᐤ
JavaScript:
const char = '\u1424';
console.log(char); // Output: ᐤ
Java:
char c = '\u1424';
System.out.println(c); // Output: ᐤ
JSON:
{"text": "\u1424"} // Value: ᐤ
Python:
char = '\u1424'
print(char) # Output: ᐤ
Perl:
my $char = "\x{1424}";
print $char; # Output: ᐤ
PHP:
$char = "\x{1424}";
echo $char; // Output: ᐤ
Ruby:
char = "\u{1424}"
puts char # Output: ᐤ
Rust:
let c = '\u{1424}';
println!("{}", c); // Output: ᐤ
Go:
char := '\u1424'
fmt.Printf("%c\n", char) // Output: ᐤ
CSS:
/* CSS content property */
.element::before {
content: "\001424"; /* 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%A4
MD5:
78edf5858b6a816b0805509986159c33
SHA1:
b10298d00712665f2a255a713a2a01d4a7f0ae44
Base64:
4ZCk