C:
char c = '\u9261';
printf("%c\n", c); // Output: 鉡
JavaScript:
const char = '\u9261';
console.log(char); // Output: 鉡
Java:
char c = '\u9261';
System.out.println(c); // Output: 鉡
JSON:
{"text": "\u9261"} // Value: 鉡
Python:
char = '\u9261'
print(char) # Output: 鉡
Perl:
my $char = "\x{9261}";
print $char; # Output: 鉡
PHP:
$char = "\x{9261}";
echo $char; // Output: 鉡
Ruby:
char = "\u{9261}"
puts char # Output: 鉡
Rust:
let c = '\u{9261}';
println!("{}", c); // Output: 鉡
Go:
char := '\u9261'
fmt.Printf("%c\n", char) // Output: 鉡
CSS:
/* CSS content property */
.element::before {
content: "\009261"; /* 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%89%A1
MD5:
eaef8b46d2e8d7993e4cc1171ac28a2b
SHA1:
2c0c12035b013f2ce0f098ed33b21bea775edcd4
Base64:
6Ymh