C:
char c = '\u9303';
printf("%c\n", c); // Output: 錃
JavaScript:
const char = '\u9303';
console.log(char); // Output: 錃
Java:
char c = '\u9303';
System.out.println(c); // Output: 錃
JSON:
{"text": "\u9303"} // Value: 錃
Python:
char = '\u9303'
print(char) # Output: 錃
Perl:
my $char = "\x{9303}";
print $char; # Output: 錃
PHP:
$char = "\x{9303}";
echo $char; // Output: 錃
Ruby:
char = "\u{9303}"
puts char # Output: 錃
Rust:
let c = '\u{9303}';
println!("{}", c); // Output: 錃
Go:
char := '\u9303'
fmt.Printf("%c\n", char) // Output: 錃
CSS:
/* CSS content property */
.element::before {
content: "\009303"; /* 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%83
MD5:
63d7f3fd9b1df56852fe7577d72eebfa
SHA1:
2a4429d14c443885793e70c44c987d7a4a3aba96
Base64:
6YyD