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