C:
char c = '\u7165';
printf("%c\n", c); // Output: 煥
JavaScript:
const char = '\u7165';
console.log(char); // Output: 煥
Java:
char c = '\u7165';
System.out.println(c); // Output: 煥
JSON:
{"text": "\u7165"} // Value: 煥
Python:
char = '\u7165'
print(char) # Output: 煥
Perl:
my $char = "\x{7165}";
print $char; # Output: 煥
PHP:
$char = "\x{7165}";
echo $char; // Output: 煥
Ruby:
char = "\u{7165}"
puts char # Output: 煥
Rust:
let c = '\u{7165}';
println!("{}", c); // Output: 煥
Go:
char := '\u7165'
fmt.Printf("%c\n", char) // Output: 煥
CSS:
/* CSS content property */
.element::before {
content: "\007165"; /* 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%85%A5
MD5:
99a6e34496ada53a7062d0af29d1b423
SHA1:
144736dc7b56ca19e1b79c29226a4abe391fa704
Base64:
54Wl