C:
char c = '\u9401';
printf("%c\n", c); // Output: 鐁
JavaScript:
const char = '\u9401';
console.log(char); // Output: 鐁
Java:
char c = '\u9401';
System.out.println(c); // Output: 鐁
JSON:
{"text": "\u9401"} // Value: 鐁
Python:
char = '\u9401'
print(char) # Output: 鐁
Perl:
my $char = "\x{9401}";
print $char; # Output: 鐁
PHP:
$char = "\x{9401}";
echo $char; // Output: 鐁
Ruby:
char = "\u{9401}"
puts char # Output: 鐁
Rust:
let c = '\u{9401}';
println!("{}", c); // Output: 鐁
Go:
char := '\u9401'
fmt.Printf("%c\n", char) // Output: 鐁
CSS:
/* CSS content property */
.element::before {
content: "\009401"; /* 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%81
MD5:
496ad02b56e1de1a5fb0631b3e9c39fc
SHA1:
7731975456007d284064aca7efbb3451b3da8501
Base64:
6ZCB