C:
char c = '\u8FA3';
printf("%c\n", c); // Output: 辣
JavaScript:
const char = '\u8FA3';
console.log(char); // Output: 辣
Java:
char c = '\u8FA3';
System.out.println(c); // Output: 辣
JSON:
{"text": "\u8FA3"} // Value: 辣
Python:
char = '\u8FA3'
print(char) # Output: 辣
Perl:
my $char = "\x{8FA3}";
print $char; # Output: 辣
PHP:
$char = "\x{8FA3}";
echo $char; // Output: 辣
Ruby:
char = "\u{8FA3}"
puts char # Output: 辣
Rust:
let c = '\u{8FA3}';
println!("{}", c); // Output: 辣
Go:
char := '\u8FA3'
fmt.Printf("%c\n", char) // Output: 辣
CSS:
/* CSS content property */
.element::before {
content: "\008FA3"; /* 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%BE%A3
MD5:
2134a40201969f94ad83aedf79116e1c
SHA1:
e50be909f385917a345d5c0ff8aba70858e08a67
Base64:
6L6j