C:
char c = '\u7B0F';
printf("%c\n", c); // Output: 笏
JavaScript:
const char = '\u7B0F';
console.log(char); // Output: 笏
Java:
char c = '\u7B0F';
System.out.println(c); // Output: 笏
JSON:
{"text": "\u7B0F"} // Value: 笏
Python:
char = '\u7B0F'
print(char) # Output: 笏
Perl:
my $char = "\x{7B0F}";
print $char; # Output: 笏
PHP:
$char = "\x{7B0F}";
echo $char; // Output: 笏
Ruby:
char = "\u{7B0F}"
puts char # Output: 笏
Rust:
let c = '\u{7B0F}';
println!("{}", c); // Output: 笏
Go:
char := '\u7B0F'
fmt.Printf("%c\n", char) // Output: 笏
CSS:
/* CSS content property */
.element::before {
content: "\007B0F"; /* 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%AC%8F
MD5:
9d8936f60404364d4bc75f021b20d1ef
SHA1:
b34ffde2b934ef8164a7028b3ff0587738620bcb
Base64:
56yP