C:
char c = '\u7170';
printf("%c\n", c); // Output: 煰
JavaScript:
const char = '\u7170';
console.log(char); // Output: 煰
Java:
char c = '\u7170';
System.out.println(c); // Output: 煰
JSON:
{"text": "\u7170"} // Value: 煰
Python:
char = '\u7170'
print(char) # Output: 煰
Perl:
my $char = "\x{7170}";
print $char; # Output: 煰
PHP:
$char = "\x{7170}";
echo $char; // Output: 煰
Ruby:
char = "\u{7170}"
puts char # Output: 煰
Rust:
let c = '\u{7170}';
println!("{}", c); // Output: 煰
Go:
char := '\u7170'
fmt.Printf("%c\n", char) // Output: 煰
CSS:
/* CSS content property */
.element::before {
content: "\007170"; /* 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%B0
MD5:
12a037bce17aea497b134ad7485b3eaa
SHA1:
6c5881a0bea8424d364bad66f5e6bc3e95ef40b7
Base64:
54Ww