Unicode Finder

"鑱" U+9471(CJK UNIFIED IDEOGRAPH-9471)

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

Programming

C
\u9471
JavaScript
\u9471
Java
\u9471
Json
\u9471
Python
\u9471
Perl
\x{9471}
PHP
\x{9471}
Ruby
\u{9471}
Rust
\u{9471}
Go
\u9471

Web

CSS
\009471
HtmlDecimal
鑱
HtmlHexadecimal
鑱
Url
%E9%91%B1

Code

MD5
b9ec7f67bf477c0e33b86af60a47dadc
Sha1
106b61d2e55e355d18d68464a7e949dea1696da6
Base64
6ZGx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9471';
console.log(char);  // Output: 鑱

Java:

char c = '\u9471';
System.out.println(c);  // Output: 鑱

JSON:

{"text": "\u9471"}  // Value: 鑱

Python:

char = '\u9471'
print(char)  # Output: 鑱

Perl:

my $char = "\x{9471}";
print $char;  # Output: 鑱

PHP:

$char = "\x{9471}";
echo $char;  // Output: 鑱

Ruby:

char = "\u{9471}"
puts char  # Output: 鑱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009471";  /* Display: 鑱 */
}

HTML Decimal:

<p>HTML decimal: &#38001;</p>  <!-- Display: 鑱 -->

HTML Hexadecimal:

<p>HTML hex: &#x9471;</p>  <!-- Display: 鑱 -->

URL Encoding:

// 鑱 URL encoding
https://unicodefinder.com/search.php?query=%E9%91%B1

Encodings

MD5:

b9ec7f67bf477c0e33b86af60a47dadc

SHA1:

106b61d2e55e355d18d68464a7e949dea1696da6

Base64:

6ZGx