C:
char c = '\u9305';
printf("%c\n", c); // Output: 錅
JavaScript:
const char = '\u9305';
console.log(char); // Output: 錅
Java:
char c = '\u9305';
System.out.println(c); // Output: 錅
JSON:
{"text": "\u9305"} // Value: 錅
Python:
char = '\u9305'
print(char) # Output: 錅
Perl:
my $char = "\x{9305}";
print $char; # Output: 錅
PHP:
$char = "\x{9305}";
echo $char; // Output: 錅
Ruby:
char = "\u{9305}"
puts char # Output: 錅
Rust:
let c = '\u{9305}';
println!("{}", c); // Output: 錅
Go:
char := '\u9305'
fmt.Printf("%c\n", char) // Output: 錅
CSS:
/* CSS content property */
.element::before {
content: "\009305"; /* 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%85
MD5:
7d25cc3cf0be10fd14048d0da3370491
SHA1:
09410a33b7da077dd96233a3ed91da58a4c88573
Base64:
6YyF