C:
char c = '\u9416';
printf("%c\n", c); // Output: 鐖
JavaScript:
const char = '\u9416';
console.log(char); // Output: 鐖
Java:
char c = '\u9416';
System.out.println(c); // Output: 鐖
JSON:
{"text": "\u9416"} // Value: 鐖
Python:
char = '\u9416'
print(char) # Output: 鐖
Perl:
my $char = "\x{9416}";
print $char; # Output: 鐖
PHP:
$char = "\x{9416}";
echo $char; // Output: 鐖
Ruby:
char = "\u{9416}"
puts char # Output: 鐖
Rust:
let c = '\u{9416}';
println!("{}", c); // Output: 鐖
Go:
char := '\u9416'
fmt.Printf("%c\n", char) // Output: 鐖
CSS:
/* CSS content property */
.element::before {
content: "\009416"; /* 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%90%96
MD5:
a3c042710183a22ab4ce413eb6f7c1fb
SHA1:
1312f7f6df4a6a7c708e56384361ab2c258ee550
Base64:
6ZCW