Unicode Finder

"钖" U+9496(CJK UNIFIED IDEOGRAPH-9496)

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

Programming

C
\u9496
JavaScript
\u9496
Java
\u9496
Json
\u9496
Python
\u9496
Perl
\x{9496}
PHP
\x{9496}
Ruby
\u{9496}
Rust
\u{9496}
Go
\u9496

Web

CSS
\009496
HtmlDecimal
钖
HtmlHexadecimal
钖
Url
%E9%92%96

Code

MD5
da73291d310ad1511e8ee152660a4796
Sha1
7e26ac06d1e355a9ab60c62f136e0cb939124253
Base64
6ZKW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9496';
console.log(char);  // Output: 钖

Java:

char c = '\u9496';
System.out.println(c);  // Output: 钖

JSON:

{"text": "\u9496"}  // Value: 钖

Python:

char = '\u9496'
print(char)  # Output: 钖

Perl:

my $char = "\x{9496}";
print $char;  # Output: 钖

PHP:

$char = "\x{9496}";
echo $char;  // Output: 钖

Ruby:

char = "\u{9496}"
puts char  # Output: 钖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009496";  /* Display: 钖 */
}

HTML Decimal:

<p>HTML decimal: &#38038;</p>  <!-- Display: 钖 -->

HTML Hexadecimal:

<p>HTML hex: &#x9496;</p>  <!-- Display: 钖 -->

URL Encoding:

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

Encodings

MD5:

da73291d310ad1511e8ee152660a4796

SHA1:

7e26ac06d1e355a9ab60c62f136e0cb939124253

Base64:

6ZKW