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