C:
char c = '\u7B99';
printf("%c\n", c); // Output: 箙
JavaScript:
const char = '\u7B99';
console.log(char); // Output: 箙
Java:
char c = '\u7B99';
System.out.println(c); // Output: 箙
JSON:
{"text": "\u7B99"} // Value: 箙
Python:
char = '\u7B99'
print(char) # Output: 箙
Perl:
my $char = "\x{7B99}";
print $char; # Output: 箙
PHP:
$char = "\x{7B99}";
echo $char; // Output: 箙
Ruby:
char = "\u{7B99}"
puts char # Output: 箙
Rust:
let c = '\u{7B99}';
println!("{}", c); // Output: 箙
Go:
char := '\u7B99'
fmt.Printf("%c\n", char) // Output: 箙
CSS:
/* CSS content property */
.element::before {
content: "\007B99"; /* 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%AE%99
MD5:
0915962f15286089b8b692cd93f29c4e
SHA1:
99f50f98daec3f82ef2ebab3c159d05953c4ea2c
Base64:
566Z