C:
char c = '\u9355';
printf("%c\n", c); // Output: 鍕
JavaScript:
const char = '\u9355';
console.log(char); // Output: 鍕
Java:
char c = '\u9355';
System.out.println(c); // Output: 鍕
JSON:
{"text": "\u9355"} // Value: 鍕
Python:
char = '\u9355'
print(char) # Output: 鍕
Perl:
my $char = "\x{9355}";
print $char; # Output: 鍕
PHP:
$char = "\x{9355}";
echo $char; // Output: 鍕
Ruby:
char = "\u{9355}"
puts char # Output: 鍕
Rust:
let c = '\u{9355}';
println!("{}", c); // Output: 鍕
Go:
char := '\u9355'
fmt.Printf("%c\n", char) // Output: 鍕
CSS:
/* CSS content property */
.element::before {
content: "\009355"; /* 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%95
MD5:
0ca93b9d10faedde8c06b7ebb7d694bd
SHA1:
5961ec674d47647e3ecc05f8fa2d1b7af8bc7e8c
Base64:
6Y2V