C:
char c = '\u7896';
printf("%c\n", c); // Output: 碖
JavaScript:
const char = '\u7896';
console.log(char); // Output: 碖
Java:
char c = '\u7896';
System.out.println(c); // Output: 碖
JSON:
{"text": "\u7896"} // Value: 碖
Python:
char = '\u7896'
print(char) # Output: 碖
Perl:
my $char = "\x{7896}";
print $char; # Output: 碖
PHP:
$char = "\x{7896}";
echo $char; // Output: 碖
Ruby:
char = "\u{7896}"
puts char # Output: 碖
Rust:
let c = '\u{7896}';
println!("{}", c); // Output: 碖
Go:
char := '\u7896'
fmt.Printf("%c\n", char) // Output: 碖
CSS:
/* CSS content property */
.element::before {
content: "\007896"; /* 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%96
MD5:
a49222053440b3e614b1414a4787df79
SHA1:
bc4610337a44292d0b3a8941bd7b24e6dfbd7000
Base64:
56KW