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