C:
char c = '\u58DD';
printf("%c\n", c); // Output: 壝
JavaScript:
const char = '\u58DD';
console.log(char); // Output: 壝
Java:
char c = '\u58DD';
System.out.println(c); // Output: 壝
JSON:
{"text": "\u58DD"} // Value: 壝
Python:
char = '\u58DD'
print(char) # Output: 壝
Perl:
my $char = "\x{58DD}";
print $char; # Output: 壝
PHP:
$char = "\x{58DD}";
echo $char; // Output: 壝
Ruby:
char = "\u{58DD}"
puts char # Output: 壝
Rust:
let c = '\u{58DD}';
println!("{}", c); // Output: 壝
Go:
char := '\u58DD'
fmt.Printf("%c\n", char) // Output: 壝
CSS:
/* CSS content property */
.element::before {
content: "\0058DD"; /* 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%9D
MD5:
b5d435b1f2f9796cadf8fd1381a8e36f
SHA1:
cee16445721dd57f5a1d7afaabc9aabc4c8cf0f0
Base64:
5aOd