C:
char c = '\u7188';
printf("%c\n", c); // Output: 熈
JavaScript:
const char = '\u7188';
console.log(char); // Output: 熈
Java:
char c = '\u7188';
System.out.println(c); // Output: 熈
JSON:
{"text": "\u7188"} // Value: 熈
Python:
char = '\u7188'
print(char) # Output: 熈
Perl:
my $char = "\x{7188}";
print $char; # Output: 熈
PHP:
$char = "\x{7188}";
echo $char; // Output: 熈
Ruby:
char = "\u{7188}"
puts char # Output: 熈
Rust:
let c = '\u{7188}';
println!("{}", c); // Output: 熈
Go:
char := '\u7188'
fmt.Printf("%c\n", char) // Output: 熈
CSS:
/* CSS content property */
.element::before {
content: "\007188"; /* 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%88
MD5:
ed304870cf586b9e9fbcd778f5af2536
SHA1:
caaa9776a32219b2e9e00b443162b7db04de8f7e
Base64:
54aI