Unicode Finder

"要" U+8981(CJK UNIFIED IDEOGRAPH-8981)

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

Programming

C
\u8981
JavaScript
\u8981
Java
\u8981
Json
\u8981
Python
\u8981
Perl
\x{8981}
PHP
\x{8981}
Ruby
\u{8981}
Rust
\u{8981}
Go
\u8981

Web

CSS
\008981
HtmlDecimal
要
HtmlHexadecimal
要
Url
%E8%A6%81

Code

MD5
5438c873f9d283d2c4015e30a1e2e9b3
Sha1
93e27107a133fb3ec777db55264b19f9b3fce67a
Base64
6KaB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8981';
console.log(char);  // Output: 要

Java:

char c = '\u8981';
System.out.println(c);  // Output: 要

JSON:

{"text": "\u8981"}  // Value: 要

Python:

char = '\u8981'
print(char)  # Output: 要

Perl:

my $char = "\x{8981}";
print $char;  # Output: 要

PHP:

$char = "\x{8981}";
echo $char;  // Output: 要

Ruby:

char = "\u{8981}"
puts char  # Output: 要

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008981";  /* Display: 要 */
}

HTML Decimal:

<p>HTML decimal: &#35201;</p>  <!-- Display: 要 -->

HTML Hexadecimal:

<p>HTML hex: &#x8981;</p>  <!-- Display: 要 -->

URL Encoding:

// 要 URL encoding
https://unicodefinder.com/search.php?query=%E8%A6%81

Encodings

MD5:

5438c873f9d283d2c4015e30a1e2e9b3

SHA1:

93e27107a133fb3ec777db55264b19f9b3fce67a

Base64:

6KaB