Unicode Finder

"項" U+9805(CJK UNIFIED IDEOGRAPH-9805)

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

Programming

C
\u9805
JavaScript
\u9805
Java
\u9805
Json
\u9805
Python
\u9805
Perl
\x{9805}
PHP
\x{9805}
Ruby
\u{9805}
Rust
\u{9805}
Go
\u9805

Web

CSS
\009805
HtmlDecimal
項
HtmlHexadecimal
項
Url
%E9%A0%85

Code

MD5
14d41410e2a27b4231530dc15ea8c07f
Sha1
9cc6467c8ca1895cd7429b156a0e073404ddf234
Base64
6aCF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9805';
console.log(char);  // Output: 項

Java:

char c = '\u9805';
System.out.println(c);  // Output: 項

JSON:

{"text": "\u9805"}  // Value: 項

Python:

char = '\u9805'
print(char)  # Output: 項

Perl:

my $char = "\x{9805}";
print $char;  # Output: 項

PHP:

$char = "\x{9805}";
echo $char;  // Output: 項

Ruby:

char = "\u{9805}"
puts char  # Output: 項

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009805";  /* Display: 項 */
}

HTML Decimal:

<p>HTML decimal: &#38917;</p>  <!-- Display: 項 -->

HTML Hexadecimal:

<p>HTML hex: &#x9805;</p>  <!-- Display: 項 -->

URL Encoding:

// 項 URL encoding
https://unicodefinder.com/search.php?query=%E9%A0%85

Encodings

MD5:

14d41410e2a27b4231530dc15ea8c07f

SHA1:

9cc6467c8ca1895cd7429b156a0e073404ddf234

Base64:

6aCF