C:
char c = '\u7894';
printf("%c\n", c); // Output: 碔
JavaScript:
const char = '\u7894';
console.log(char); // Output: 碔
Java:
char c = '\u7894';
System.out.println(c); // Output: 碔
JSON:
{"text": "\u7894"} // Value: 碔
Python:
char = '\u7894'
print(char) # Output: 碔
Perl:
my $char = "\x{7894}";
print $char; # Output: 碔
PHP:
$char = "\x{7894}";
echo $char; // Output: 碔
Ruby:
char = "\u{7894}"
puts char # Output: 碔
Rust:
let c = '\u{7894}';
println!("{}", c); // Output: 碔
Go:
char := '\u7894'
fmt.Printf("%c\n", char) // Output: 碔
CSS:
/* CSS content property */
.element::before {
content: "\007894"; /* 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%94
MD5:
33f7009537d86fd183792db6c31c1dbb
SHA1:
3adb75bfa0153cc3daa8efc12cec73ff31b8f908
Base64:
56KU