C:
char c = '\u1402';
printf("%c\n", c); // Output: ᐂ
JavaScript:
const char = '\u1402';
console.log(char); // Output: ᐂ
Java:
char c = '\u1402';
System.out.println(c); // Output: ᐂ
JSON:
{"text": "\u1402"} // Value: ᐂ
Python:
char = '\u1402'
print(char) # Output: ᐂ
Perl:
my $char = "\x{1402}";
print $char; # Output: ᐂ
PHP:
$char = "\x{1402}";
echo $char; // Output: ᐂ
Ruby:
char = "\u{1402}"
puts char # Output: ᐂ
Rust:
let c = '\u{1402}';
println!("{}", c); // Output: ᐂ
Go:
char := '\u1402'
fmt.Printf("%c\n", char) // Output: ᐂ
CSS:
/* CSS content property */
.element::before {
content: "\001402"; /* 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%82
MD5:
49343fc1a6351501b2cbd67e41e256d2
SHA1:
e7c70c0403258ea24898953725a8084539ef145b
Base64:
4ZCC