Unicode Finder

"钅" U+9485(CJK UNIFIED IDEOGRAPH-9485)

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

Programming

C
\u9485
JavaScript
\u9485
Java
\u9485
Json
\u9485
Python
\u9485
Perl
\x{9485}
PHP
\x{9485}
Ruby
\u{9485}
Rust
\u{9485}
Go
\u9485

Web

CSS
\009485
HtmlDecimal
钅
HtmlHexadecimal
钅
Url
%E9%92%85

Code

MD5
36a86d557824af89fb6ed277aea8e28f
Sha1
4394eac47ead402a2928c75ecbcb197e9d1a5b0a
Base64
6ZKF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9485';
console.log(char);  // Output: 钅

Java:

char c = '\u9485';
System.out.println(c);  // Output: 钅

JSON:

{"text": "\u9485"}  // Value: 钅

Python:

char = '\u9485'
print(char)  # Output: 钅

Perl:

my $char = "\x{9485}";
print $char;  # Output: 钅

PHP:

$char = "\x{9485}";
echo $char;  // Output: 钅

Ruby:

char = "\u{9485}"
puts char  # Output: 钅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009485";  /* Display: 钅 */
}

HTML Decimal:

<p>HTML decimal: &#38021;</p>  <!-- Display: 钅 -->

HTML Hexadecimal:

<p>HTML hex: &#x9485;</p>  <!-- Display: 钅 -->

URL Encoding:

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

Encodings

MD5:

36a86d557824af89fb6ed277aea8e28f

SHA1:

4394eac47ead402a2928c75ecbcb197e9d1a5b0a

Base64:

6ZKF