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