Unicode Finder

"鍣" U+9363(CJK UNIFIED IDEOGRAPH-9363)

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

Programming

C
\u9363
JavaScript
\u9363
Java
\u9363
Json
\u9363
Python
\u9363
Perl
\x{9363}
PHP
\x{9363}
Ruby
\u{9363}
Rust
\u{9363}
Go
\u9363

Web

CSS
\009363
HtmlDecimal
鍣
HtmlHexadecimal
鍣
Url
%E9%8D%A3

Code

MD5
43d4a767fb9bc03f2aa1ead43e1941f2
Sha1
6d18f84f4fd45c03bc20e37ef68f2c416c0b5a03
Base64
6Y2j

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9363';
console.log(char);  // Output: 鍣

Java:

char c = '\u9363';
System.out.println(c);  // Output: 鍣

JSON:

{"text": "\u9363"}  // Value: 鍣

Python:

char = '\u9363'
print(char)  # Output: 鍣

Perl:

my $char = "\x{9363}";
print $char;  # Output: 鍣

PHP:

$char = "\x{9363}";
echo $char;  // Output: 鍣

Ruby:

char = "\u{9363}"
puts char  # Output: 鍣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009363";  /* Display: 鍣 */
}

HTML Decimal:

<p>HTML decimal: &#37731;</p>  <!-- Display: 鍣 -->

HTML Hexadecimal:

<p>HTML hex: &#x9363;</p>  <!-- Display: 鍣 -->

URL Encoding:

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

Encodings

MD5:

43d4a767fb9bc03f2aa1ead43e1941f2

SHA1:

6d18f84f4fd45c03bc20e37ef68f2c416c0b5a03

Base64:

6Y2j