C:
char c = '\u7144';
printf("%c\n", c); // Output: 煄
JavaScript:
const char = '\u7144';
console.log(char); // Output: 煄
Java:
char c = '\u7144';
System.out.println(c); // Output: 煄
JSON:
{"text": "\u7144"} // Value: 煄
Python:
char = '\u7144'
print(char) # Output: 煄
Perl:
my $char = "\x{7144}";
print $char; # Output: 煄
PHP:
$char = "\x{7144}";
echo $char; // Output: 煄
Ruby:
char = "\u{7144}"
puts char # Output: 煄
Rust:
let c = '\u{7144}';
println!("{}", c); // Output: 煄
Go:
char := '\u7144'
fmt.Printf("%c\n", char) // Output: 煄
CSS:
/* CSS content property */
.element::before {
content: "\007144"; /* 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%84
MD5:
179fcd0b88f2ef7d6db308052009ff67
SHA1:
495a493b801067387cae55f2e4d12895921e0c77
Base64:
54WE