C:
char c = '\u9742';
printf("%c\n", c); // Output: 靂
JavaScript:
const char = '\u9742';
console.log(char); // Output: 靂
Java:
char c = '\u9742';
System.out.println(c); // Output: 靂
JSON:
{"text": "\u9742"} // Value: 靂
Python:
char = '\u9742'
print(char) # Output: 靂
Perl:
my $char = "\x{9742}";
print $char; # Output: 靂
PHP:
$char = "\x{9742}";
echo $char; // Output: 靂
Ruby:
char = "\u{9742}"
puts char # Output: 靂
Rust:
let c = '\u{9742}';
println!("{}", c); // Output: 靂
Go:
char := '\u9742'
fmt.Printf("%c\n", char) // Output: 靂
CSS:
/* CSS content property */
.element::before {
content: "\009742"; /* 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%9D%82
MD5:
60b3536f672025255747a1e316b25a1c
SHA1:
60dd3cdada704fa4a2fd6ca24f92bd501d1a4fb7
Base64:
6Z2C