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