Unicode Finder

"锒" U+9512(CJK UNIFIED IDEOGRAPH-9512)

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

Programming

C
\u9512
JavaScript
\u9512
Java
\u9512
Json
\u9512
Python
\u9512
Perl
\x{9512}
PHP
\x{9512}
Ruby
\u{9512}
Rust
\u{9512}
Go
\u9512

Web

CSS
\009512
HtmlDecimal
锒
HtmlHexadecimal
锒
Url
%E9%94%92

Code

MD5
b28f2ff559cc0800d4ef93a24bc5351f
Sha1
5b006856cda1ab149fc44c2dd1c77bf5d1624194
Base64
6ZSS

使用示例

Programming Languages

C:

char c = '\u9512';
printf("%c\n", c);  // Output: 锒

JavaScript:

const char = '\u9512';
console.log(char);  // Output: 锒

Java:

char c = '\u9512';
System.out.println(c);  // Output: 锒

JSON:

{"text": "\u9512"}  // Value: 锒

Python:

char = '\u9512'
print(char)  # Output: 锒

Perl:

my $char = "\x{9512}";
print $char;  # Output: 锒

PHP:

$char = "\x{9512}";
echo $char;  // Output: 锒

Ruby:

char = "\u{9512}"
puts char  # Output: 锒

Rust:

let c = '\u{9512}';
println!("{}", c);  // Output: 锒

Go:

char := '\u9512'
fmt.Printf("%c\n", char)  // Output: 锒

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009512";  /* Display: 锒 */
}

HTML Decimal:

<p>HTML decimal: &#38162;</p>  <!-- Display: 锒 -->

HTML Hexadecimal:

<p>HTML hex: &#x9512;</p>  <!-- Display: 锒 -->

URL Encoding:

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

Encodings

MD5:

b28f2ff559cc0800d4ef93a24bc5351f

SHA1:

5b006856cda1ab149fc44c2dd1c77bf5d1624194

Base64:

6ZSS