C:
char c = '\u56CF';
printf("%c\n", c); // Output: 囏
JavaScript:
const char = '\u56CF';
console.log(char); // Output: 囏
Java:
char c = '\u56CF';
System.out.println(c); // Output: 囏
JSON:
{"text": "\u56CF"} // Value: 囏
Python:
char = '\u56CF'
print(char) # Output: 囏
Perl:
my $char = "\x{56CF}";
print $char; # Output: 囏
PHP:
$char = "\x{56CF}";
echo $char; // Output: 囏
Ruby:
char = "\u{56CF}"
puts char # Output: 囏
Rust:
let c = '\u{56CF}';
println!("{}", c); // Output: 囏
Go:
char := '\u56CF'
fmt.Printf("%c\n", char) // Output: 囏
CSS:
/* CSS content property */
.element::before {
content: "\0056CF"; /* 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=%E5%9B%8F
MD5:
d21bf1122642c3f5cee44e4de7914c01
SHA1:
b351056175bfa86e5c5bf70224d5a07aea3d5f87
Base64:
5ZuP