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