Unicode Finder

"鐣" U+9423(CJK UNIFIED IDEOGRAPH-9423)

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

Programming

C
\u9423
JavaScript
\u9423
Java
\u9423
Json
\u9423
Python
\u9423
Perl
\x{9423}
PHP
\x{9423}
Ruby
\u{9423}
Rust
\u{9423}
Go
\u9423

Web

CSS
\009423
HtmlDecimal
鐣
HtmlHexadecimal
鐣
Url
%E9%90%A3

Code

MD5
084e1a16347ea1538d6a345e8415b59a
Sha1
afee2dab9b1eb94e52f9254f034728e70e1d15df
Base64
6ZCj

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9423';
console.log(char);  // Output: 鐣

Java:

char c = '\u9423';
System.out.println(c);  // Output: 鐣

JSON:

{"text": "\u9423"}  // Value: 鐣

Python:

char = '\u9423'
print(char)  # Output: 鐣

Perl:

my $char = "\x{9423}";
print $char;  # Output: 鐣

PHP:

$char = "\x{9423}";
echo $char;  // Output: 鐣

Ruby:

char = "\u{9423}"
puts char  # Output: 鐣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009423";  /* Display: 鐣 */
}

HTML Decimal:

<p>HTML decimal: &#37923;</p>  <!-- Display: 鐣 -->

HTML Hexadecimal:

<p>HTML hex: &#x9423;</p>  <!-- Display: 鐣 -->

URL Encoding:

// 鐣 URL encoding
https://unicodefinder.com/search.php?query=%E9%90%A3

Encodings

MD5:

084e1a16347ea1538d6a345e8415b59a

SHA1:

afee2dab9b1eb94e52f9254f034728e70e1d15df

Base64:

6ZCj