C:
char c = '\u9311';
printf("%c\n", c); // Output: 錑
JavaScript:
const char = '\u9311';
console.log(char); // Output: 錑
Java:
char c = '\u9311';
System.out.println(c); // Output: 錑
JSON:
{"text": "\u9311"} // Value: 錑
Python:
char = '\u9311'
print(char) # Output: 錑
Perl:
my $char = "\x{9311}";
print $char; # Output: 錑
PHP:
$char = "\x{9311}";
echo $char; // Output: 錑
Ruby:
char = "\u{9311}"
puts char # Output: 錑
Rust:
let c = '\u{9311}';
println!("{}", c); // Output: 錑
Go:
char := '\u9311'
fmt.Printf("%c\n", char) // Output: 錑
CSS:
/* CSS content property */
.element::before {
content: "\009311"; /* 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=%E9%8C%91
MD5:
bc353ff203ec28e8ffe7fb3d4849d324
SHA1:
f09b5f8b8f5465ac50a4a5bdd06e9b4ab18b5d07
Base64:
6YyR