C:
char c = '\u5B76';
printf("%c\n", c); // Output: 孶
JavaScript:
const char = '\u5B76';
console.log(char); // Output: 孶
Java:
char c = '\u5B76';
System.out.println(c); // Output: 孶
JSON:
{"text": "\u5B76"} // Value: 孶
Python:
char = '\u5B76'
print(char) # Output: 孶
Perl:
my $char = "\x{5B76}";
print $char; # Output: 孶
PHP:
$char = "\x{5B76}";
echo $char; // Output: 孶
Ruby:
char = "\u{5B76}"
puts char # Output: 孶
Rust:
let c = '\u{5B76}';
println!("{}", c); // Output: 孶
Go:
char := '\u5B76'
fmt.Printf("%c\n", char) // Output: 孶
CSS:
/* CSS content property */
.element::before {
content: "\005B76"; /* 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%B6
MD5:
1fcbdc653d0b0d4abebe044e90a80c52
SHA1:
123b81ebab478de123e4db7fc0411a9d40692749
Base64:
5a22