Unicode Finder

"鐂" U+9402(CJK UNIFIED IDEOGRAPH-9402)

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

Programming

C
\u9402
JavaScript
\u9402
Java
\u9402
Json
\u9402
Python
\u9402
Perl
\x{9402}
PHP
\x{9402}
Ruby
\u{9402}
Rust
\u{9402}
Go
\u9402

Web

CSS
\009402
HtmlDecimal
鐂
HtmlHexadecimal
鐂
Url
%E9%90%82

Code

MD5
3298ec2b221849aebaa3c3ae49161271
Sha1
c01f607fd1132c04ee312b7f0c66db93aed55314
Base64
6ZCC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9402';
console.log(char);  // Output: 鐂

Java:

char c = '\u9402';
System.out.println(c);  // Output: 鐂

JSON:

{"text": "\u9402"}  // Value: 鐂

Python:

char = '\u9402'
print(char)  # Output: 鐂

Perl:

my $char = "\x{9402}";
print $char;  # Output: 鐂

PHP:

$char = "\x{9402}";
echo $char;  // Output: 鐂

Ruby:

char = "\u{9402}"
puts char  # Output: 鐂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009402";  /* Display: 鐂 */
}

HTML Decimal:

<p>HTML decimal: &#37890;</p>  <!-- Display: 鐂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9402;</p>  <!-- Display: 鐂 -->

URL Encoding:

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

Encodings

MD5:

3298ec2b221849aebaa3c3ae49161271

SHA1:

c01f607fd1132c04ee312b7f0c66db93aed55314

Base64:

6ZCC