C:
char c = '\u2A92';
printf("%c\n", c); // Output: ⪒
JavaScript:
const char = '\u2A92';
console.log(char); // Output: ⪒
Java:
char c = '\u2A92';
System.out.println(c); // Output: ⪒
JSON:
{"text": "\u2A92"} // Value: ⪒
Python:
char = '\u2A92'
print(char) # Output: ⪒
Perl:
my $char = "\x{2A92}";
print $char; # Output: ⪒
PHP:
$char = "\x{2A92}";
echo $char; // Output: ⪒
Ruby:
char = "\u{2A92}"
puts char # Output: ⪒
Rust:
let c = '\u{2A92}';
println!("{}", c); // Output: ⪒
Go:
char := '\u2A92'
fmt.Printf("%c\n", char) // Output: ⪒
CSS:
/* CSS content property */
.element::before {
content: "\002A92"; /* 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%92
MD5:
3a08fe372a256db418e37ada93da7989
SHA1:
66fc9f299904461ad21d04bd0422798797668753
Base64:
4qqS