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