C:
char c = '\u7093';
printf("%c\n", c); // Output: 炓
JavaScript:
const char = '\u7093';
console.log(char); // Output: 炓
Java:
char c = '\u7093';
System.out.println(c); // Output: 炓
JSON:
{"text": "\u7093"} // Value: 炓
Python:
char = '\u7093'
print(char) # Output: 炓
Perl:
my $char = "\x{7093}";
print $char; # Output: 炓
PHP:
$char = "\x{7093}";
echo $char; // Output: 炓
Ruby:
char = "\u{7093}"
puts char # Output: 炓
Rust:
let c = '\u{7093}';
println!("{}", c); // Output: 炓
Go:
char := '\u7093'
fmt.Printf("%c\n", char) // Output: 炓
CSS:
/* CSS content property */
.element::before {
content: "\007093"; /* 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%82%93
MD5:
e9a78a0424ca9d340f063c211eb92c5d
SHA1:
17c4120b2d0623cf0b3edb2a3021cbf84ba2ddba
Base64:
54KT