C:
char c = '\u9265';
printf("%c\n", c); // Output: 鉥
JavaScript:
const char = '\u9265';
console.log(char); // Output: 鉥
Java:
char c = '\u9265';
System.out.println(c); // Output: 鉥
JSON:
{"text": "\u9265"} // Value: 鉥
Python:
char = '\u9265'
print(char) # Output: 鉥
Perl:
my $char = "\x{9265}";
print $char; # Output: 鉥
PHP:
$char = "\x{9265}";
echo $char; // Output: 鉥
Ruby:
char = "\u{9265}"
puts char # Output: 鉥
Rust:
let c = '\u{9265}';
println!("{}", c); // Output: 鉥
Go:
char := '\u9265'
fmt.Printf("%c\n", char) // Output: 鉥
CSS:
/* CSS content property */
.element::before {
content: "\009265"; /* 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%A5
MD5:
85aac5b612ca86bb8e6b16e1effe208d
SHA1:
907e0b31964f6820ace6ddf96f1c988170fb5ac0
Base64:
6Yml