C:
char c = '\u7154';
printf("%c\n", c); // Output: 煔
JavaScript:
const char = '\u7154';
console.log(char); // Output: 煔
Java:
char c = '\u7154';
System.out.println(c); // Output: 煔
JSON:
{"text": "\u7154"} // Value: 煔
Python:
char = '\u7154'
print(char) # Output: 煔
Perl:
my $char = "\x{7154}";
print $char; # Output: 煔
PHP:
$char = "\x{7154}";
echo $char; // Output: 煔
Ruby:
char = "\u{7154}"
puts char # Output: 煔
Rust:
let c = '\u{7154}';
println!("{}", c); // Output: 煔
Go:
char := '\u7154'
fmt.Printf("%c\n", char) // Output: 煔
CSS:
/* CSS content property */
.element::before {
content: "\007154"; /* 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%94
MD5:
d13523b4d618c8ecc0063e2c146e47c9
SHA1:
846aee3e874e33fce69da0df0c86a209f894e72d
Base64:
54WU