C:
char c = '\u9412';
printf("%c\n", c); // Output: 鐒
JavaScript:
const char = '\u9412';
console.log(char); // Output: 鐒
Java:
char c = '\u9412';
System.out.println(c); // Output: 鐒
JSON:
{"text": "\u9412"} // Value: 鐒
Python:
char = '\u9412'
print(char) # Output: 鐒
Perl:
my $char = "\x{9412}";
print $char; # Output: 鐒
PHP:
$char = "\x{9412}";
echo $char; // Output: 鐒
Ruby:
char = "\u{9412}"
puts char # Output: 鐒
Rust:
let c = '\u{9412}';
println!("{}", c); // Output: 鐒
Go:
char := '\u9412'
fmt.Printf("%c\n", char) // Output: 鐒
CSS:
/* CSS content property */
.element::before {
content: "\009412"; /* 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%92
MD5:
ebd5ccc0419f557eb5443287af159fa7
SHA1:
e37da1244f208f73827926eab289a7aeb2f1ab1d
Base64:
6ZCS