C:
char c = '\u22AB';
printf("%c\n", c); // Output: ⊫
JavaScript:
const char = '\u22AB';
console.log(char); // Output: ⊫
Java:
char c = '\u22AB';
System.out.println(c); // Output: ⊫
JSON:
{"text": "\u22AB"} // Value: ⊫
Python:
char = '\u22AB'
print(char) # Output: ⊫
Perl:
my $char = "\x{22AB}";
print $char; # Output: ⊫
PHP:
$char = "\x{22AB}";
echo $char; // Output: ⊫
Ruby:
char = "\u{22AB}"
puts char # Output: ⊫
Rust:
let c = '\u{22AB}';
println!("{}", c); // Output: ⊫
Go:
char := '\u22AB'
fmt.Printf("%c\n", char) // Output: ⊫
CSS:
/* CSS content property */
.element::before {
content: "\0022AB"; /* 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%8A%AB
MD5:
980b7afe83ce7b18d06b1e3ebfc5bb33
SHA1:
746b1bd74853959ae845343d0f28ecb01c003e9f
Base64:
4oqr