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