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