C:
char c = '\u7189';
printf("%c\n", c); // Output: 熉
JavaScript:
const char = '\u7189';
console.log(char); // Output: 熉
Java:
char c = '\u7189';
System.out.println(c); // Output: 熉
JSON:
{"text": "\u7189"} // Value: 熉
Python:
char = '\u7189'
print(char) # Output: 熉
Perl:
my $char = "\x{7189}";
print $char; # Output: 熉
PHP:
$char = "\x{7189}";
echo $char; // Output: 熉
Ruby:
char = "\u{7189}"
puts char # Output: 熉
Rust:
let c = '\u{7189}';
println!("{}", c); // Output: 熉
Go:
char := '\u7189'
fmt.Printf("%c\n", char) // Output: 熉
CSS:
/* CSS content property */
.element::before {
content: "\007189"; /* 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%89
MD5:
79d1abbd06bce4a9cfbbca2978010125
SHA1:
bb8e2b16a07ea1caa6f744af44e1701af8093518
Base64:
54aJ