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