C:
char c = '\u5B96';
printf("%c\n", c); // Output: 宖
JavaScript:
const char = '\u5B96';
console.log(char); // Output: 宖
Java:
char c = '\u5B96';
System.out.println(c); // Output: 宖
JSON:
{"text": "\u5B96"} // Value: 宖
Python:
char = '\u5B96'
print(char) # Output: 宖
Perl:
my $char = "\x{5B96}";
print $char; # Output: 宖
PHP:
$char = "\x{5B96}";
echo $char; // Output: 宖
Ruby:
char = "\u{5B96}"
puts char # Output: 宖
Rust:
let c = '\u{5B96}';
println!("{}", c); // Output: 宖
Go:
char := '\u5B96'
fmt.Printf("%c\n", char) // Output: 宖
CSS:
/* CSS content property */
.element::before {
content: "\005B96"; /* 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%AE%96
MD5:
914f0abb6cbe7306fa38412034058ab9
SHA1:
e38802470bc73e187cd2ca70caa9de4ef68b97df
Base64:
5a6W