C:
char c = '\u7088';
printf("%c\n", c); // Output: 炈
JavaScript:
const char = '\u7088';
console.log(char); // Output: 炈
Java:
char c = '\u7088';
System.out.println(c); // Output: 炈
JSON:
{"text": "\u7088"} // Value: 炈
Python:
char = '\u7088'
print(char) # Output: 炈
Perl:
my $char = "\x{7088}";
print $char; # Output: 炈
PHP:
$char = "\x{7088}";
echo $char; // Output: 炈
Ruby:
char = "\u{7088}"
puts char # Output: 炈
Rust:
let c = '\u{7088}';
println!("{}", c); // Output: 炈
Go:
char := '\u7088'
fmt.Printf("%c\n", char) // Output: 炈
CSS:
/* CSS content property */
.element::before {
content: "\007088"; /* 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%88
MD5:
f00bcd2bcef5ce5a38259052172526d6
SHA1:
67c52387041f83c3044299eed6694c9568294a6a
Base64:
54KI