C:
char c = '\u9313';
printf("%c\n", c); // Output: 錓
JavaScript:
const char = '\u9313';
console.log(char); // Output: 錓
Java:
char c = '\u9313';
System.out.println(c); // Output: 錓
JSON:
{"text": "\u9313"} // Value: 錓
Python:
char = '\u9313'
print(char) # Output: 錓
Perl:
my $char = "\x{9313}";
print $char; # Output: 錓
PHP:
$char = "\x{9313}";
echo $char; // Output: 錓
Ruby:
char = "\u{9313}"
puts char # Output: 錓
Rust:
let c = '\u{9313}';
println!("{}", c); // Output: 錓
Go:
char := '\u9313'
fmt.Printf("%c\n", char) // Output: 錓
CSS:
/* CSS content property */
.element::before {
content: "\009313"; /* 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%93
MD5:
7afee87bb994265110196c8681fcf9e8
SHA1:
c9947606ca9ee9c41f467d73fcfd3fa223c9f445
Base64:
6YyT