C:
char c = '\u58F3';
printf("%c\n", c); // Output: 壳
JavaScript:
const char = '\u58F3';
console.log(char); // Output: 壳
Java:
char c = '\u58F3';
System.out.println(c); // Output: 壳
JSON:
{"text": "\u58F3"} // Value: 壳
Python:
char = '\u58F3'
print(char) # Output: 壳
Perl:
my $char = "\x{58F3}";
print $char; # Output: 壳
PHP:
$char = "\x{58F3}";
echo $char; // Output: 壳
Ruby:
char = "\u{58F3}"
puts char # Output: 壳
Rust:
let c = '\u{58F3}';
println!("{}", c); // Output: 壳
Go:
char := '\u58F3'
fmt.Printf("%c\n", char) // Output: 壳
CSS:
/* CSS content property */
.element::before {
content: "\0058F3"; /* 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=%E5%A3%B3
MD5:
7aa70c702cefc6d24e869162585edce2
SHA1:
8877e29f3bd2d7dda715e49f452966aa74bf64f9
Base64:
5aOz