C:
char c = '\u7155';
printf("%c\n", c); // Output: 煕
JavaScript:
const char = '\u7155';
console.log(char); // Output: 煕
Java:
char c = '\u7155';
System.out.println(c); // Output: 煕
JSON:
{"text": "\u7155"} // Value: 煕
Python:
char = '\u7155'
print(char) # Output: 煕
Perl:
my $char = "\x{7155}";
print $char; # Output: 煕
PHP:
$char = "\x{7155}";
echo $char; // Output: 煕
Ruby:
char = "\u{7155}"
puts char # Output: 煕
Rust:
let c = '\u{7155}';
println!("{}", c); // Output: 煕
Go:
char := '\u7155'
fmt.Printf("%c\n", char) // Output: 煕
CSS:
/* CSS content property */
.element::before {
content: "\007155"; /* 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%95
MD5:
2959c3df129700cd76275bde3a681cd7
SHA1:
6d8b47d408a06fe1c65a0183d0c4571ffe2b854c
Base64:
54WV