C:
char c = '\u7159';
printf("%c\n", c); // Output: 煙
JavaScript:
const char = '\u7159';
console.log(char); // Output: 煙
Java:
char c = '\u7159';
System.out.println(c); // Output: 煙
JSON:
{"text": "\u7159"} // Value: 煙
Python:
char = '\u7159'
print(char) # Output: 煙
Perl:
my $char = "\x{7159}";
print $char; # Output: 煙
PHP:
$char = "\x{7159}";
echo $char; // Output: 煙
Ruby:
char = "\u{7159}"
puts char # Output: 煙
Rust:
let c = '\u{7159}';
println!("{}", c); // Output: 煙
Go:
char := '\u7159'
fmt.Printf("%c\n", char) // Output: 煙
CSS:
/* CSS content property */
.element::before {
content: "\007159"; /* 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%99
MD5:
5b4d42321d39b605757bf01d77ca04e7
SHA1:
19a78ec6dae6ed14effe64c7efdd8bf84edac03e
Base64:
54WZ