C:
char c = '\u9332';
printf("%c\n", c); // Output: 録
JavaScript:
const char = '\u9332';
console.log(char); // Output: 録
Java:
char c = '\u9332';
System.out.println(c); // Output: 録
JSON:
{"text": "\u9332"} // Value: 録
Python:
char = '\u9332'
print(char) # Output: 録
Perl:
my $char = "\x{9332}";
print $char; # Output: 録
PHP:
$char = "\x{9332}";
echo $char; // Output: 録
Ruby:
char = "\u{9332}"
puts char # Output: 録
Rust:
let c = '\u{9332}';
println!("{}", c); // Output: 録
Go:
char := '\u9332'
fmt.Printf("%c\n", char) // Output: 録
CSS:
/* CSS content property */
.element::before {
content: "\009332"; /* 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%B2
MD5:
ecb009e7db79693628a4de3b749875f2
SHA1:
36755e7cde58d9b599ce157b705074b388bccd46
Base64:
6Yyy