C:
char c = '\u1428';
printf("%c\n", c); // Output: ᐨ
JavaScript:
const char = '\u1428';
console.log(char); // Output: ᐨ
Java:
char c = '\u1428';
System.out.println(c); // Output: ᐨ
JSON:
{"text": "\u1428"} // Value: ᐨ
Python:
char = '\u1428'
print(char) # Output: ᐨ
Perl:
my $char = "\x{1428}";
print $char; # Output: ᐨ
PHP:
$char = "\x{1428}";
echo $char; // Output: ᐨ
Ruby:
char = "\u{1428}"
puts char # Output: ᐨ
Rust:
let c = '\u{1428}';
println!("{}", c); // Output: ᐨ
Go:
char := '\u1428'
fmt.Printf("%c\n", char) // Output: ᐨ
CSS:
/* CSS content property */
.element::before {
content: "\001428"; /* 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%A8
MD5:
f33fd515e2eead543e7e94f75aceee64
SHA1:
94d79f72ad534c08c99f809104c9dd8499d10fbc
Base64:
4ZCo