C:
char c = '\u7206';
printf("%c\n", c); // Output: 爆
JavaScript:
const char = '\u7206';
console.log(char); // Output: 爆
Java:
char c = '\u7206';
System.out.println(c); // Output: 爆
JSON:
{"text": "\u7206"} // Value: 爆
Python:
char = '\u7206'
print(char) # Output: 爆
Perl:
my $char = "\x{7206}";
print $char; # Output: 爆
PHP:
$char = "\x{7206}";
echo $char; // Output: 爆
Ruby:
char = "\u{7206}"
puts char # Output: 爆
Rust:
let c = '\u{7206}';
println!("{}", c); // Output: 爆
Go:
char := '\u7206'
fmt.Printf("%c\n", char) // Output: 爆
CSS:
/* CSS content property */
.element::before {
content: "\007206"; /* 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%88%86
MD5:
6fcb9054dd5649e0dc0e81748901284a
SHA1:
29e0d877fc579e5faa834414e05aaa596e43bc52
Base64:
54iG