C:
char c = '\u7B06';
printf("%c\n", c); // Output: 笆
JavaScript:
const char = '\u7B06';
console.log(char); // Output: 笆
Java:
char c = '\u7B06';
System.out.println(c); // Output: 笆
JSON:
{"text": "\u7B06"} // Value: 笆
Python:
char = '\u7B06'
print(char) # Output: 笆
Perl:
my $char = "\x{7B06}";
print $char; # Output: 笆
PHP:
$char = "\x{7B06}";
echo $char; // Output: 笆
Ruby:
char = "\u{7B06}"
puts char # Output: 笆
Rust:
let c = '\u{7B06}';
println!("{}", c); // Output: 笆
Go:
char := '\u7B06'
fmt.Printf("%c\n", char) // Output: 笆
CSS:
/* CSS content property */
.element::before {
content: "\007B06"; /* 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%86
MD5:
47ca4851f917f7e3fa1a7e97bcc612dc
SHA1:
351666cc9fa1f6f5b768e8eaa7c022c9a3662b1a
Base64:
56yG