C:
char c = '\u7B53';
printf("%c\n", c); // Output: 筓
JavaScript:
const char = '\u7B53';
console.log(char); // Output: 筓
Java:
char c = '\u7B53';
System.out.println(c); // Output: 筓
JSON:
{"text": "\u7B53"} // Value: 筓
Python:
char = '\u7B53'
print(char) # Output: 筓
Perl:
my $char = "\x{7B53}";
print $char; # Output: 筓
PHP:
$char = "\x{7B53}";
echo $char; // Output: 筓
Ruby:
char = "\u{7B53}"
puts char # Output: 筓
Rust:
let c = '\u{7B53}';
println!("{}", c); // Output: 筓
Go:
char := '\u7B53'
fmt.Printf("%c\n", char) // Output: 筓
CSS:
/* CSS content property */
.element::before {
content: "\007B53"; /* 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%AD%93
MD5:
d15bfcd036724d7c97868101bc417c8a
SHA1:
05cf6a336a9bd3f183fa2063e5b5c217d8371113
Base64:
562T