C:
char c = '\u934B';
printf("%c\n", c); // Output: 鍋
JavaScript:
const char = '\u934B';
console.log(char); // Output: 鍋
Java:
char c = '\u934B';
System.out.println(c); // Output: 鍋
JSON:
{"text": "\u934B"} // Value: 鍋
Python:
char = '\u934B'
print(char) # Output: 鍋
Perl:
my $char = "\x{934B}";
print $char; # Output: 鍋
PHP:
$char = "\x{934B}";
echo $char; // Output: 鍋
Ruby:
char = "\u{934B}"
puts char # Output: 鍋
Rust:
let c = '\u{934B}';
println!("{}", c); // Output: 鍋
Go:
char := '\u934B'
fmt.Printf("%c\n", char) // Output: 鍋
CSS:
/* CSS content property */
.element::before {
content: "\00934B"; /* 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%8D%8B
MD5:
1b52d3930d08f2c6befeb260acdd4433
SHA1:
a1205627c28eb6fbebe4a3d3f523730fe04be16e
Base64:
6Y2L