Unicode Finder

"锖" U+9516(CJK UNIFIED IDEOGRAPH-9516)

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

Programming

C
\u9516
JavaScript
\u9516
Java
\u9516
Json
\u9516
Python
\u9516
Perl
\x{9516}
PHP
\x{9516}
Ruby
\u{9516}
Rust
\u{9516}
Go
\u9516

Web

CSS
\009516
HtmlDecimal
锖
HtmlHexadecimal
锖
Url
%E9%94%96

Code

MD5
1511a59a4b820ec47a39182e9a2fc0e0
Sha1
c54b57de4023c1d06ed407e644a8ebf2ebc3e162
Base64
6ZSW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9516';
console.log(char);  // Output: 锖

Java:

char c = '\u9516';
System.out.println(c);  // Output: 锖

JSON:

{"text": "\u9516"}  // Value: 锖

Python:

char = '\u9516'
print(char)  # Output: 锖

Perl:

my $char = "\x{9516}";
print $char;  # Output: 锖

PHP:

$char = "\x{9516}";
echo $char;  // Output: 锖

Ruby:

char = "\u{9516}"
puts char  # Output: 锖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009516";  /* Display: 锖 */
}

HTML Decimal:

<p>HTML decimal: &#38166;</p>  <!-- Display: 锖 -->

HTML Hexadecimal:

<p>HTML hex: &#x9516;</p>  <!-- Display: 锖 -->

URL Encoding:

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

Encodings

MD5:

1511a59a4b820ec47a39182e9a2fc0e0

SHA1:

c54b57de4023c1d06ed407e644a8ebf2ebc3e162

Base64:

6ZSW