Unicode Finder

"鍑" U+9351(CJK UNIFIED IDEOGRAPH-9351)

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

Programming

C
\u9351
JavaScript
\u9351
Java
\u9351
Json
\u9351
Python
\u9351
Perl
\x{9351}
PHP
\x{9351}
Ruby
\u{9351}
Rust
\u{9351}
Go
\u9351

Web

CSS
\009351
HtmlDecimal
鍑
HtmlHexadecimal
鍑
Url
%E9%8D%91

Code

MD5
1044730d0791293f5ae359e437262fb9
Sha1
105ceb9a4cfdd5f1e2cd966ad1360884a7449846
Base64
6Y2R

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9351';
console.log(char);  // Output: 鍑

Java:

char c = '\u9351';
System.out.println(c);  // Output: 鍑

JSON:

{"text": "\u9351"}  // Value: 鍑

Python:

char = '\u9351'
print(char)  # Output: 鍑

Perl:

my $char = "\x{9351}";
print $char;  # Output: 鍑

PHP:

$char = "\x{9351}";
echo $char;  // Output: 鍑

Ruby:

char = "\u{9351}"
puts char  # Output: 鍑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009351";  /* Display: 鍑 */
}

HTML Decimal:

<p>HTML decimal: &#37713;</p>  <!-- Display: 鍑 -->

HTML Hexadecimal:

<p>HTML hex: &#x9351;</p>  <!-- Display: 鍑 -->

URL Encoding:

// 鍑 URL encoding
https://unicodefinder.com/search.php?query=%E9%8D%91

Encodings

MD5:

1044730d0791293f5ae359e437262fb9

SHA1:

105ceb9a4cfdd5f1e2cd966ad1360884a7449846

Base64:

6Y2R