C:
char c = '\u7886';
printf("%c\n", c); // Output: 碆
JavaScript:
const char = '\u7886';
console.log(char); // Output: 碆
Java:
char c = '\u7886';
System.out.println(c); // Output: 碆
JSON:
{"text": "\u7886"} // Value: 碆
Python:
char = '\u7886'
print(char) # Output: 碆
Perl:
my $char = "\x{7886}";
print $char; # Output: 碆
PHP:
$char = "\x{7886}";
echo $char; // Output: 碆
Ruby:
char = "\u{7886}"
puts char # Output: 碆
Rust:
let c = '\u{7886}';
println!("{}", c); // Output: 碆
Go:
char := '\u7886'
fmt.Printf("%c\n", char) // Output: 碆
CSS:
/* CSS content property */
.element::before {
content: "\007886"; /* 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=%E7%A2%86
MD5:
f7442b96fffdef1fffb8a043edfe3d79
SHA1:
24170110230a7c78a819b2dd0fefafdc17fbaf18
Base64:
56KG