C:
char c = '\u9304';
printf("%c\n", c); // Output: 錄
JavaScript:
const char = '\u9304';
console.log(char); // Output: 錄
Java:
char c = '\u9304';
System.out.println(c); // Output: 錄
JSON:
{"text": "\u9304"} // Value: 錄
Python:
char = '\u9304'
print(char) # Output: 錄
Perl:
my $char = "\x{9304}";
print $char; # Output: 錄
PHP:
$char = "\x{9304}";
echo $char; // Output: 錄
Ruby:
char = "\u{9304}"
puts char # Output: 錄
Rust:
let c = '\u{9304}';
println!("{}", c); // Output: 錄
Go:
char := '\u9304'
fmt.Printf("%c\n", char) // Output: 錄
CSS:
/* CSS content property */
.element::before {
content: "\009304"; /* 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%84
MD5:
36177e8c5775485231884690d4610db8
SHA1:
f255b905c4d9c50a1a3488175d48412dfacad123
Base64:
6YyE