C:
char c = '\u9706';
printf("%c\n", c); // Output: 霆
JavaScript:
const char = '\u9706';
console.log(char); // Output: 霆
Java:
char c = '\u9706';
System.out.println(c); // Output: 霆
JSON:
{"text": "\u9706"} // Value: 霆
Python:
char = '\u9706'
print(char) # Output: 霆
Perl:
my $char = "\x{9706}";
print $char; # Output: 霆
PHP:
$char = "\x{9706}";
echo $char; // Output: 霆
Ruby:
char = "\u{9706}"
puts char # Output: 霆
Rust:
let c = '\u{9706}';
println!("{}", c); // Output: 霆
Go:
char := '\u9706'
fmt.Printf("%c\n", char) // Output: 霆
CSS:
/* CSS content property */
.element::before {
content: "\009706"; /* 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=%E9%9C%86
MD5:
acfbbe211adfc97f3f9e27bf4a14f889
SHA1:
7c7ed1cbef096a490a646861747ad39887367e1f
Base64:
6ZyG