C:
char c = '\u9345';
printf("%c\n", c); // Output: 鍅
JavaScript:
const char = '\u9345';
console.log(char); // Output: 鍅
Java:
char c = '\u9345';
System.out.println(c); // Output: 鍅
JSON:
{"text": "\u9345"} // Value: 鍅
Python:
char = '\u9345'
print(char) # Output: 鍅
Perl:
my $char = "\x{9345}";
print $char; # Output: 鍅
PHP:
$char = "\x{9345}";
echo $char; // Output: 鍅
Ruby:
char = "\u{9345}"
puts char # Output: 鍅
Rust:
let c = '\u{9345}';
println!("{}", c); // Output: 鍅
Go:
char := '\u9345'
fmt.Printf("%c\n", char) // Output: 鍅
CSS:
/* CSS content property */
.element::before {
content: "\009345"; /* 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%85
MD5:
33f237d8c4992da9a0f1d51bf19f4fe6
SHA1:
f09df8a30261d84a696d32e7f15f3520899895c5
Base64:
6Y2F