C:
char c = '\u9502';
printf("%c\n", c); // Output: 锂
JavaScript:
const char = '\u9502';
console.log(char); // Output: 锂
Java:
char c = '\u9502';
System.out.println(c); // Output: 锂
JSON:
{"text": "\u9502"} // Value: 锂
Python:
char = '\u9502'
print(char) # Output: 锂
Perl:
my $char = "\x{9502}";
print $char; # Output: 锂
PHP:
$char = "\x{9502}";
echo $char; // Output: 锂
Ruby:
char = "\u{9502}"
puts char # Output: 锂
Rust:
let c = '\u{9502}';
println!("{}", c); // Output: 锂
Go:
char := '\u9502'
fmt.Printf("%c\n", char) // Output: 锂
CSS:
/* CSS content property */
.element::before {
content: "\009502"; /* 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%94%82
MD5:
3d1f0c08a53b0021f15a57470d47b208
SHA1:
fa5b13469aa4aa819e30ee12243a67bab613b24b
Base64:
6ZSC