Unicode Finder

"逑" U+9011(CJK UNIFIED IDEOGRAPH-9011)

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

Programming

C
\u9011
JavaScript
\u9011
Java
\u9011
Json
\u9011
Python
\u9011
Perl
\x{9011}
PHP
\x{9011}
Ruby
\u{9011}
Rust
\u{9011}
Go
\u9011

Web

CSS
\009011
HtmlDecimal
逑
HtmlHexadecimal
逑
Url
%E9%80%91

Code

MD5
086d4a2d676230f71864542f8ee4ea54
Sha1
feefd8c8d9b1cf91c8e447e0f73d676f1cd8922e
Base64
6YCR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9011';
console.log(char);  // Output: 逑

Java:

char c = '\u9011';
System.out.println(c);  // Output: 逑

JSON:

{"text": "\u9011"}  // Value: 逑

Python:

char = '\u9011'
print(char)  # Output: 逑

Perl:

my $char = "\x{9011}";
print $char;  # Output: 逑

PHP:

$char = "\x{9011}";
echo $char;  // Output: 逑

Ruby:

char = "\u{9011}"
puts char  # Output: 逑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009011";  /* Display: 逑 */
}

HTML Decimal:

<p>HTML decimal: &#36881;</p>  <!-- Display: 逑 -->

HTML Hexadecimal:

<p>HTML hex: &#x9011;</p>  <!-- Display: 逑 -->

URL Encoding:

// 逑 URL encoding
https://unicodefinder.com/search.php?query=%E9%80%91

Encodings

MD5:

086d4a2d676230f71864542f8ee4ea54

SHA1:

feefd8c8d9b1cf91c8e447e0f73d676f1cd8922e

Base64:

6YCR