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