C:
char c = '\u1427';
printf("%c\n", c); // Output: ᐧ
JavaScript:
const char = '\u1427';
console.log(char); // Output: ᐧ
Java:
char c = '\u1427';
System.out.println(c); // Output: ᐧ
JSON:
{"text": "\u1427"} // Value: ᐧ
Python:
char = '\u1427'
print(char) # Output: ᐧ
Perl:
my $char = "\x{1427}";
print $char; # Output: ᐧ
PHP:
$char = "\x{1427}";
echo $char; // Output: ᐧ
Ruby:
char = "\u{1427}"
puts char # Output: ᐧ
Rust:
let c = '\u{1427}';
println!("{}", c); // Output: ᐧ
Go:
char := '\u1427'
fmt.Printf("%c\n", char) // Output: ᐧ
CSS:
/* CSS content property */
.element::before {
content: "\001427"; /* 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%A7
MD5:
cb8625b5f610151ceee95180040fd282
SHA1:
e1f968741b1ee4ed0f684567bdb668e0d911bd32
Base64:
4ZCn