C:
char c = '\u7140';
printf("%c\n", c); // Output: 煀
JavaScript:
const char = '\u7140';
console.log(char); // Output: 煀
Java:
char c = '\u7140';
System.out.println(c); // Output: 煀
JSON:
{"text": "\u7140"} // Value: 煀
Python:
char = '\u7140'
print(char) # Output: 煀
Perl:
my $char = "\x{7140}";
print $char; # Output: 煀
PHP:
$char = "\x{7140}";
echo $char; // Output: 煀
Ruby:
char = "\u{7140}"
puts char # Output: 煀
Rust:
let c = '\u{7140}';
println!("{}", c); // Output: 煀
Go:
char := '\u7140'
fmt.Printf("%c\n", char) // Output: 煀
CSS:
/* CSS content property */
.element::before {
content: "\007140"; /* 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%80
MD5:
d9d83741de5d6027bd278b51d9624910
SHA1:
e8615579d6f7131db8bcd625d9ae3f7f6545dfdb
Base64:
54WA