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