Unicode Finder

"遁" U+9041(CJK UNIFIED IDEOGRAPH-9041)

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

Programming

C
\u9041
JavaScript
\u9041
Java
\u9041
Json
\u9041
Python
\u9041
Perl
\x{9041}
PHP
\x{9041}
Ruby
\u{9041}
Rust
\u{9041}
Go
\u9041

Web

CSS
\009041
HtmlDecimal
遁
HtmlHexadecimal
遁
Url
%E9%81%81

Code

MD5
e9d5049b2a8c0bef90f405a3605543db
Sha1
97346bb8aa2b4a3b600be5762d77f8c5ef5fe001
Base64
6YGB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9041';
console.log(char);  // Output: 遁

Java:

char c = '\u9041';
System.out.println(c);  // Output: 遁

JSON:

{"text": "\u9041"}  // Value: 遁

Python:

char = '\u9041'
print(char)  # Output: 遁

Perl:

my $char = "\x{9041}";
print $char;  # Output: 遁

PHP:

$char = "\x{9041}";
echo $char;  // Output: 遁

Ruby:

char = "\u{9041}"
puts char  # Output: 遁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009041";  /* Display: 遁 */
}

HTML Decimal:

<p>HTML decimal: &#36929;</p>  <!-- Display: 遁 -->

HTML Hexadecimal:

<p>HTML hex: &#x9041;</p>  <!-- Display: 遁 -->

URL Encoding:

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

Encodings

MD5:

e9d5049b2a8c0bef90f405a3605543db

SHA1:

97346bb8aa2b4a3b600be5762d77f8c5ef5fe001

Base64:

6YGB