C:
char c = '\u5584';
printf("%c\n", c); // Output: 善
JavaScript:
const char = '\u5584';
console.log(char); // Output: 善
Java:
char c = '\u5584';
System.out.println(c); // Output: 善
JSON:
{"text": "\u5584"} // Value: 善
Python:
char = '\u5584'
print(char) # Output: 善
Perl:
my $char = "\x{5584}";
print $char; # Output: 善
PHP:
$char = "\x{5584}";
echo $char; // Output: 善
Ruby:
char = "\u{5584}"
puts char # Output: 善
Rust:
let c = '\u{5584}';
println!("{}", c); // Output: 善
Go:
char := '\u5584'
fmt.Printf("%c\n", char) // Output: 善
CSS:
/* CSS content property */
.element::before {
content: "\005584"; /* 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%96%84
MD5:
2fca8cbcd2d41b11c38379debf02c59f
SHA1:
c81f42d7d75bd6bc69261b1b814cc9a1a5a1448c
Base64:
5ZaE