C:
char c = '\u286F';
printf("%c\n", c); // Output: ⡯
JavaScript:
const char = '\u286F';
console.log(char); // Output: ⡯
Java:
char c = '\u286F';
System.out.println(c); // Output: ⡯
JSON:
{"text": "\u286F"} // Value: ⡯
Python:
char = '\u286F'
print(char) # Output: ⡯
Perl:
my $char = "\x{286F}";
print $char; # Output: ⡯
PHP:
$char = "\x{286F}";
echo $char; // Output: ⡯
Ruby:
char = "\u{286F}"
puts char # Output: ⡯
Rust:
let c = '\u{286F}';
println!("{}", c); // Output: ⡯
Go:
char := '\u286F'
fmt.Printf("%c\n", char) // Output: ⡯
CSS:
/* CSS content property */
.element::before {
content: "\00286F"; /* 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%A1%AF
MD5:
db55d68908a69c000aa9ff25983f0301
SHA1:
42fec49eb29c46fc63cb356a28cb1e53eb3a0590
Base64:
4qGv