C:
char c = '\u7151';
printf("%c\n", c); // Output: 煑
JavaScript:
const char = '\u7151';
console.log(char); // Output: 煑
Java:
char c = '\u7151';
System.out.println(c); // Output: 煑
JSON:
{"text": "\u7151"} // Value: 煑
Python:
char = '\u7151'
print(char) # Output: 煑
Perl:
my $char = "\x{7151}";
print $char; # Output: 煑
PHP:
$char = "\x{7151}";
echo $char; // Output: 煑
Ruby:
char = "\u{7151}"
puts char # Output: 煑
Rust:
let c = '\u{7151}';
println!("{}", c); // Output: 煑
Go:
char := '\u7151'
fmt.Printf("%c\n", char) // Output: 煑
CSS:
/* CSS content property */
.element::before {
content: "\007151"; /* 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%91
MD5:
41df124047738695280f47b66118b083
SHA1:
d13ddefcbcddb719925aa5054d920dd5887a3c9b
Base64:
54WR