C:
char c = '\u7157';
printf("%c\n", c); // Output: 煗
JavaScript:
const char = '\u7157';
console.log(char); // Output: 煗
Java:
char c = '\u7157';
System.out.println(c); // Output: 煗
JSON:
{"text": "\u7157"} // Value: 煗
Python:
char = '\u7157'
print(char) # Output: 煗
Perl:
my $char = "\x{7157}";
print $char; # Output: 煗
PHP:
$char = "\x{7157}";
echo $char; // Output: 煗
Ruby:
char = "\u{7157}"
puts char # Output: 煗
Rust:
let c = '\u{7157}';
println!("{}", c); // Output: 煗
Go:
char := '\u7157'
fmt.Printf("%c\n", char) // Output: 煗
CSS:
/* CSS content property */
.element::before {
content: "\007157"; /* 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%97
MD5:
7e3317bb8c5aa9a00124492d2a1976b8
SHA1:
4f5962ff2380a20ec4ffdb716a7a540145da06a2
Base64:
54WX