C:
char c = '\u925C';
printf("%c\n", c); // Output: 鉜
JavaScript:
const char = '\u925C';
console.log(char); // Output: 鉜
Java:
char c = '\u925C';
System.out.println(c); // Output: 鉜
JSON:
{"text": "\u925C"} // Value: 鉜
Python:
char = '\u925C'
print(char) # Output: 鉜
Perl:
my $char = "\x{925C}";
print $char; # Output: 鉜
PHP:
$char = "\x{925C}";
echo $char; // Output: 鉜
Ruby:
char = "\u{925C}"
puts char # Output: 鉜
Rust:
let c = '\u{925C}';
println!("{}", c); // Output: 鉜
Go:
char := '\u925C'
fmt.Printf("%c\n", char) // Output: 鉜
CSS:
/* CSS content property */
.element::before {
content: "\00925C"; /* 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%9C
MD5:
5ff7c423e75170c8dda5e73e9d9bec84
SHA1:
46d4bb277b8ae15d828d8a2f82aa5ca276c5d1b5
Base64:
6Ymc