C:
char c = '\u8F70';
printf("%c\n", c); // Output: 轰
JavaScript:
const char = '\u8F70';
console.log(char); // Output: 轰
Java:
char c = '\u8F70';
System.out.println(c); // Output: 轰
JSON:
{"text": "\u8F70"} // Value: 轰
Python:
char = '\u8F70'
print(char) # Output: 轰
Perl:
my $char = "\x{8F70}";
print $char; # Output: 轰
PHP:
$char = "\x{8F70}";
echo $char; // Output: 轰
Ruby:
char = "\u{8F70}"
puts char # Output: 轰
Rust:
let c = '\u{8F70}';
println!("{}", c); // Output: 轰
Go:
char := '\u8F70'
fmt.Printf("%c\n", char) // Output: 轰
CSS:
/* CSS content property */
.element::before {
content: "\008F70"; /* 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=%E8%BD%B0
MD5:
4d0d23d882feec5ac57669b401deb0c6
SHA1:
622ee9399cc54da3421a39495dea92d1e7a4df96
Base64:
6L2w