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