C:
char c = '\u7150';
printf("%c\n", c); // Output: 煐
JavaScript:
const char = '\u7150';
console.log(char); // Output: 煐
Java:
char c = '\u7150';
System.out.println(c); // Output: 煐
JSON:
{"text": "\u7150"} // Value: 煐
Python:
char = '\u7150'
print(char) # Output: 煐
Perl:
my $char = "\x{7150}";
print $char; # Output: 煐
PHP:
$char = "\x{7150}";
echo $char; // Output: 煐
Ruby:
char = "\u{7150}"
puts char # Output: 煐
Rust:
let c = '\u{7150}';
println!("{}", c); // Output: 煐
Go:
char := '\u7150'
fmt.Printf("%c\n", char) // Output: 煐
CSS:
/* CSS content property */
.element::before {
content: "\007150"; /* 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%90
MD5:
5170a6f408a4eda6f3f49509c15553f2
SHA1:
d14a39d48ff4ef6f7e1d6320cde202541731f7f1
Base64:
54WQ