C:
char c = '\u5B3E';
printf("%c\n", c); // Output: 嬾
JavaScript:
const char = '\u5B3E';
console.log(char); // Output: 嬾
Java:
char c = '\u5B3E';
System.out.println(c); // Output: 嬾
JSON:
{"text": "\u5B3E"} // Value: 嬾
Python:
char = '\u5B3E'
print(char) # Output: 嬾
Perl:
my $char = "\x{5B3E}";
print $char; # Output: 嬾
PHP:
$char = "\x{5B3E}";
echo $char; // Output: 嬾
Ruby:
char = "\u{5B3E}"
puts char # Output: 嬾
Rust:
let c = '\u{5B3E}';
println!("{}", c); // Output: 嬾
Go:
char := '\u5B3E'
fmt.Printf("%c\n", char) // Output: 嬾
CSS:
/* CSS content property */
.element::before {
content: "\005B3E"; /* 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%AC%BE
MD5:
92ac0b90f77b8b05560d6e4178db9e6d
SHA1:
d1619f8d14ebacea3914f95a9e8084b113191c14
Base64:
5ay+