C:
char c = '\u7199';
printf("%c\n", c); // Output: 熙
JavaScript:
const char = '\u7199';
console.log(char); // Output: 熙
Java:
char c = '\u7199';
System.out.println(c); // Output: 熙
JSON:
{"text": "\u7199"} // Value: 熙
Python:
char = '\u7199'
print(char) # Output: 熙
Perl:
my $char = "\x{7199}";
print $char; # Output: 熙
PHP:
$char = "\x{7199}";
echo $char; // Output: 熙
Ruby:
char = "\u{7199}"
puts char # Output: 熙
Rust:
let c = '\u{7199}';
println!("{}", c); // Output: 熙
Go:
char := '\u7199'
fmt.Printf("%c\n", char) // Output: 熙
CSS:
/* CSS content property */
.element::before {
content: "\007199"; /* 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=%E7%86%99
MD5:
25ed409f1d7efbae5a770555501cc146
SHA1:
39009a453c423b653fe53b5d12f39ce86dff551e
Base64:
54aZ