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