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