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