C:
char c = '\u9398';
printf("%c\n", c); // Output: 鎘
JavaScript:
const char = '\u9398';
console.log(char); // Output: 鎘
Java:
char c = '\u9398';
System.out.println(c); // Output: 鎘
JSON:
{"text": "\u9398"} // Value: 鎘
Python:
char = '\u9398'
print(char) # Output: 鎘
Perl:
my $char = "\x{9398}";
print $char; # Output: 鎘
PHP:
$char = "\x{9398}";
echo $char; // Output: 鎘
Ruby:
char = "\u{9398}"
puts char # Output: 鎘
Rust:
let c = '\u{9398}';
println!("{}", c); // Output: 鎘
Go:
char := '\u9398'
fmt.Printf("%c\n", char) // Output: 鎘
CSS:
/* CSS content property */
.element::before {
content: "\009398"; /* 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%8E%98
MD5:
79cac834955d33987992e71904bb78a1
SHA1:
b4c42915dad4a0f6eed345156095b49103995822
Base64:
6Y6Y