C:
char c = '\u7097';
printf("%c\n", c); // Output: 炗
JavaScript:
const char = '\u7097';
console.log(char); // Output: 炗
Java:
char c = '\u7097';
System.out.println(c); // Output: 炗
JSON:
{"text": "\u7097"} // Value: 炗
Python:
char = '\u7097'
print(char) # Output: 炗
Perl:
my $char = "\x{7097}";
print $char; # Output: 炗
PHP:
$char = "\x{7097}";
echo $char; // Output: 炗
Ruby:
char = "\u{7097}"
puts char # Output: 炗
Rust:
let c = '\u{7097}';
println!("{}", c); // Output: 炗
Go:
char := '\u7097'
fmt.Printf("%c\n", char) // Output: 炗
CSS:
/* CSS content property */
.element::before {
content: "\007097"; /* 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%97
MD5:
0c15e9832cfb14dc2afb5f878c2f5b62
SHA1:
a138330fdce04c4846fb5cb968fe2fc622ca18dd
Base64:
54KX