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