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