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