C:
char c = '\u9333';
printf("%c\n", c); // Output: 錳
JavaScript:
const char = '\u9333';
console.log(char); // Output: 錳
Java:
char c = '\u9333';
System.out.println(c); // Output: 錳
JSON:
{"text": "\u9333"} // Value: 錳
Python:
char = '\u9333'
print(char) # Output: 錳
Perl:
my $char = "\x{9333}";
print $char; # Output: 錳
PHP:
$char = "\x{9333}";
echo $char; // Output: 錳
Ruby:
char = "\u{9333}"
puts char # Output: 錳
Rust:
let c = '\u{9333}';
println!("{}", c); // Output: 錳
Go:
char := '\u9333'
fmt.Printf("%c\n", char) // Output: 錳
CSS:
/* CSS content property */
.element::before {
content: "\009333"; /* 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%B3
MD5:
f48df85f939b20ecd0c8f82563f3d4b3
SHA1:
7134760a7859cd4282df4b20146c510f9b99dd29
Base64:
6Yyz