C:
char c = '\u7431';
printf("%c\n", c); // Output: 琱
JavaScript:
const char = '\u7431';
console.log(char); // Output: 琱
Java:
char c = '\u7431';
System.out.println(c); // Output: 琱
JSON:
{"text": "\u7431"} // Value: 琱
Python:
char = '\u7431'
print(char) # Output: 琱
Perl:
my $char = "\x{7431}";
print $char; # Output: 琱
PHP:
$char = "\x{7431}";
echo $char; // Output: 琱
Ruby:
char = "\u{7431}"
puts char # Output: 琱
Rust:
let c = '\u{7431}';
println!("{}", c); // Output: 琱
Go:
char := '\u7431'
fmt.Printf("%c\n", char) // Output: 琱
CSS:
/* CSS content property */
.element::before {
content: "\007431"; /* 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=%E7%90%B1
MD5:
2b05d9107151ff40dcaabca4bdaa4ede
SHA1:
16598889e3427447b15a8854e258e8928962bf89
Base64:
55Cx