C:
char c = '\u7156';
printf("%c\n", c); // Output: 煖
JavaScript:
const char = '\u7156';
console.log(char); // Output: 煖
Java:
char c = '\u7156';
System.out.println(c); // Output: 煖
JSON:
{"text": "\u7156"} // Value: 煖
Python:
char = '\u7156'
print(char) # Output: 煖
Perl:
my $char = "\x{7156}";
print $char; # Output: 煖
PHP:
$char = "\x{7156}";
echo $char; // Output: 煖
Ruby:
char = "\u{7156}"
puts char # Output: 煖
Rust:
let c = '\u{7156}';
println!("{}", c); // Output: 煖
Go:
char := '\u7156'
fmt.Printf("%c\n", char) // Output: 煖
CSS:
/* CSS content property */
.element::before {
content: "\007156"; /* 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%96
MD5:
ceaa911c41c169227fbef4e42625cc97
SHA1:
d40eafe22e772ca76f3aa1095d58760a4b9935af
Base64:
54WW