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