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