C:
char c = '\u7830';
printf("%c\n", c); // Output: 砰
JavaScript:
const char = '\u7830';
console.log(char); // Output: 砰
Java:
char c = '\u7830';
System.out.println(c); // Output: 砰
JSON:
{"text": "\u7830"} // Value: 砰
Python:
char = '\u7830'
print(char) # Output: 砰
Perl:
my $char = "\x{7830}";
print $char; # Output: 砰
PHP:
$char = "\x{7830}";
echo $char; // Output: 砰
Ruby:
char = "\u{7830}"
puts char # Output: 砰
Rust:
let c = '\u{7830}';
println!("{}", c); // Output: 砰
Go:
char := '\u7830'
fmt.Printf("%c\n", char) // Output: 砰
CSS:
/* CSS content property */
.element::before {
content: "\007830"; /* 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%A0%B0
MD5:
f6e4e808b3f484e481614084d93756c2
SHA1:
5ec10819e68abe0336c97151d6def6b2442a5aa7
Base64:
56Cw