Unicode Finder

"鍐" U+9350(CJK UNIFIED IDEOGRAPH-9350)

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

Programming

C
\u9350
JavaScript
\u9350
Java
\u9350
Json
\u9350
Python
\u9350
Perl
\x{9350}
PHP
\x{9350}
Ruby
\u{9350}
Rust
\u{9350}
Go
\u9350

Web

CSS
\009350
HtmlDecimal
鍐
HtmlHexadecimal
鍐
Url
%E9%8D%90

Code

MD5
2025aae668c9ef095fc95f7cffb7068d
Sha1
4de1623345e18313da9654c25182425fd7d2fc03
Base64
6Y2Q

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9350';
console.log(char);  // Output: 鍐

Java:

char c = '\u9350';
System.out.println(c);  // Output: 鍐

JSON:

{"text": "\u9350"}  // Value: 鍐

Python:

char = '\u9350'
print(char)  # Output: 鍐

Perl:

my $char = "\x{9350}";
print $char;  # Output: 鍐

PHP:

$char = "\x{9350}";
echo $char;  // Output: 鍐

Ruby:

char = "\u{9350}"
puts char  # Output: 鍐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009350";  /* Display: 鍐 */
}

HTML Decimal:

<p>HTML decimal: &#37712;</p>  <!-- Display: 鍐 -->

HTML Hexadecimal:

<p>HTML hex: &#x9350;</p>  <!-- Display: 鍐 -->

URL Encoding:

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

Encodings

MD5:

2025aae668c9ef095fc95f7cffb7068d

SHA1:

4de1623345e18313da9654c25182425fd7d2fc03

Base64:

6Y2Q