C:
char c = '\u7130';
printf("%c\n", c); // Output: 焰
JavaScript:
const char = '\u7130';
console.log(char); // Output: 焰
Java:
char c = '\u7130';
System.out.println(c); // Output: 焰
JSON:
{"text": "\u7130"} // Value: 焰
Python:
char = '\u7130'
print(char) # Output: 焰
Perl:
my $char = "\x{7130}";
print $char; # Output: 焰
PHP:
$char = "\x{7130}";
echo $char; // Output: 焰
Ruby:
char = "\u{7130}"
puts char # Output: 焰
Rust:
let c = '\u{7130}';
println!("{}", c); // Output: 焰
Go:
char := '\u7130'
fmt.Printf("%c\n", char) // Output: 焰
CSS:
/* CSS content property */
.element::before {
content: "\007130"; /* 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%84%B0
MD5:
d5790fb4de84f6513c3a89e488452b41
SHA1:
15531e9107d9a05ae81f14ef57dfa4c9dc278345
Base64:
54Sw