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