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