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