Unicode Finder

"锂" U+9502(CJK UNIFIED IDEOGRAPH-9502)

U+9502
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-9502

Programming

C
\u9502
JavaScript
\u9502
Java
\u9502
Json
\u9502
Python
\u9502
Perl
\x{9502}
PHP
\x{9502}
Ruby
\u{9502}
Rust
\u{9502}
Go
\u9502

Web

CSS
\009502
HtmlDecimal
锂
HtmlHexadecimal
锂
Url
%E9%94%82

Code

MD5
3d1f0c08a53b0021f15a57470d47b208
Sha1
fa5b13469aa4aa819e30ee12243a67bab613b24b
Base64
6ZSC

使用示例

Programming Languages

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: 锂

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009502";  /* Display: 锂 */
}

HTML Decimal:

<p>HTML decimal: &#38146;</p>  <!-- Display: 锂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9502;</p>  <!-- Display: 锂 -->

URL Encoding:

// 锂 URL encoding
https://unicodefinder.com/search.php?query=%E9%94%82

Encodings

MD5:

3d1f0c08a53b0021f15a57470d47b208

SHA1:

fa5b13469aa4aa819e30ee12243a67bab613b24b

Base64:

6ZSC