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