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