C:
char c = '\u7147';
printf("%c\n", c); // Output: 煇
JavaScript:
const char = '\u7147';
console.log(char); // Output: 煇
Java:
char c = '\u7147';
System.out.println(c); // Output: 煇
JSON:
{"text": "\u7147"} // Value: 煇
Python:
char = '\u7147'
print(char) # Output: 煇
Perl:
my $char = "\x{7147}";
print $char; # Output: 煇
PHP:
$char = "\x{7147}";
echo $char; // Output: 煇
Ruby:
char = "\u{7147}"
puts char # Output: 煇
Rust:
let c = '\u{7147}';
println!("{}", c); // Output: 煇
Go:
char := '\u7147'
fmt.Printf("%c\n", char) // Output: 煇
CSS:
/* CSS content property */
.element::before {
content: "\007147"; /* 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%87
MD5:
41f49fccdbb1db3c3d413bc72e39f5bc
SHA1:
a726ca23ce4f6e2b965b0c1607dc384c0a69e59d
Base64:
54WH