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