C:
char c = '\u1417';
printf("%c\n", c); // Output: ᐗ
JavaScript:
const char = '\u1417';
console.log(char); // Output: ᐗ
Java:
char c = '\u1417';
System.out.println(c); // Output: ᐗ
JSON:
{"text": "\u1417"} // Value: ᐗ
Python:
char = '\u1417'
print(char) # Output: ᐗ
Perl:
my $char = "\x{1417}";
print $char; # Output: ᐗ
PHP:
$char = "\x{1417}";
echo $char; // Output: ᐗ
Ruby:
char = "\u{1417}"
puts char # Output: ᐗ
Rust:
let c = '\u{1417}';
println!("{}", c); // Output: ᐗ
Go:
char := '\u1417'
fmt.Printf("%c\n", char) // Output: ᐗ
CSS:
/* CSS content property */
.element::before {
content: "\001417"; /* 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%97
MD5:
4600fe74f43187ca0276d0fd1938fcba
SHA1:
0437cd8355feba44ffd91002813f3e162e575017
Base64:
4ZCX