C:
char c = '\u5B7B';
printf("%c\n", c); // Output: 孻
JavaScript:
const char = '\u5B7B';
console.log(char); // Output: 孻
Java:
char c = '\u5B7B';
System.out.println(c); // Output: 孻
JSON:
{"text": "\u5B7B"} // Value: 孻
Python:
char = '\u5B7B'
print(char) # Output: 孻
Perl:
my $char = "\x{5B7B}";
print $char; # Output: 孻
PHP:
$char = "\x{5B7B}";
echo $char; // Output: 孻
Ruby:
char = "\u{5B7B}"
puts char # Output: 孻
Rust:
let c = '\u{5B7B}';
println!("{}", c); // Output: 孻
Go:
char := '\u5B7B'
fmt.Printf("%c\n", char) // Output: 孻
CSS:
/* CSS content property */
.element::before {
content: "\005B7B"; /* 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=%E5%AD%BB
MD5:
58b4e3cca75d41dea6f8db510b1d1d40
SHA1:
252a9c3eda032ab98f1910c76ef0571a4bc96826
Base64:
5a27