C:
char c = '\u1420';
printf("%c\n", c); // Output: ᐠ
JavaScript:
const char = '\u1420';
console.log(char); // Output: ᐠ
Java:
char c = '\u1420';
System.out.println(c); // Output: ᐠ
JSON:
{"text": "\u1420"} // Value: ᐠ
Python:
char = '\u1420'
print(char) # Output: ᐠ
Perl:
my $char = "\x{1420}";
print $char; # Output: ᐠ
PHP:
$char = "\x{1420}";
echo $char; // Output: ᐠ
Ruby:
char = "\u{1420}"
puts char # Output: ᐠ
Rust:
let c = '\u{1420}';
println!("{}", c); // Output: ᐠ
Go:
char := '\u1420'
fmt.Printf("%c\n", char) // Output: ᐠ
CSS:
/* CSS content property */
.element::before {
content: "\001420"; /* 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%A0
MD5:
58742596727f6b90b9cc7d7f9670fe27
SHA1:
85ec05aae9aa682bd8eb6bca525ffb08fb570f7f
Base64:
4ZCg