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