C:
char c = '\u9201';
printf("%c\n", c); // Output: 鈁
JavaScript:
const char = '\u9201';
console.log(char); // Output: 鈁
Java:
char c = '\u9201';
System.out.println(c); // Output: 鈁
JSON:
{"text": "\u9201"} // Value: 鈁
Python:
char = '\u9201'
print(char) # Output: 鈁
Perl:
my $char = "\x{9201}";
print $char; # Output: 鈁
PHP:
$char = "\x{9201}";
echo $char; // Output: 鈁
Ruby:
char = "\u{9201}"
puts char # Output: 鈁
Rust:
let c = '\u{9201}';
println!("{}", c); // Output: 鈁
Go:
char := '\u9201'
fmt.Printf("%c\n", char) // Output: 鈁
CSS:
/* CSS content property */
.element::before {
content: "\009201"; /* 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%88%81
MD5:
ec04d93abd5686155780680b5b7d1fa2
SHA1:
732b80a65d01cbdccd1cb56ad736ccca2cae390e
Base64:
6YiB