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