Unicode Finder

"遂" U+9042(CJK UNIFIED IDEOGRAPH-9042)

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

Programming

C
\u9042
JavaScript
\u9042
Java
\u9042
Json
\u9042
Python
\u9042
Perl
\x{9042}
PHP
\x{9042}
Ruby
\u{9042}
Rust
\u{9042}
Go
\u9042

Web

CSS
\009042
HtmlDecimal
遂
HtmlHexadecimal
遂
Url
%E9%81%82

Code

MD5
3748fef28633f24a7f468174b4b283b6
Sha1
c6ac6a08da289c6aff93a8646a7e70b9f2c9fcf9
Base64
6YGC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9042';
console.log(char);  // Output: 遂

Java:

char c = '\u9042';
System.out.println(c);  // Output: 遂

JSON:

{"text": "\u9042"}  // Value: 遂

Python:

char = '\u9042'
print(char)  # Output: 遂

Perl:

my $char = "\x{9042}";
print $char;  # Output: 遂

PHP:

$char = "\x{9042}";
echo $char;  // Output: 遂

Ruby:

char = "\u{9042}"
puts char  # Output: 遂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009042";  /* Display: 遂 */
}

HTML Decimal:

<p>HTML decimal: &#36930;</p>  <!-- Display: 遂 -->

HTML Hexadecimal:

<p>HTML hex: &#x9042;</p>  <!-- Display: 遂 -->

URL Encoding:

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

Encodings

MD5:

3748fef28633f24a7f468174b4b283b6

SHA1:

c6ac6a08da289c6aff93a8646a7e70b9f2c9fcf9

Base64:

6YGC