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