C:
char c = '\u7115';
printf("%c\n", c); // Output: 焕
JavaScript:
const char = '\u7115';
console.log(char); // Output: 焕
Java:
char c = '\u7115';
System.out.println(c); // Output: 焕
JSON:
{"text": "\u7115"} // Value: 焕
Python:
char = '\u7115'
print(char) # Output: 焕
Perl:
my $char = "\x{7115}";
print $char; # Output: 焕
PHP:
$char = "\x{7115}";
echo $char; // Output: 焕
Ruby:
char = "\u{7115}"
puts char # Output: 焕
Rust:
let c = '\u{7115}';
println!("{}", c); // Output: 焕
Go:
char := '\u7115'
fmt.Printf("%c\n", char) // Output: 焕
CSS:
/* CSS content property */
.element::before {
content: "\007115"; /* 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%84%95
MD5:
8234410eb58d3b7c9d7dd4e9b78f7745
SHA1:
0df8c24047bcf1f7bb2e85ce19a98387816ce0df
Base64:
54SV