Unicode Finder

"者" U+8005(CJK UNIFIED IDEOGRAPH-8005)

U+8005
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8005

Programming

C
\u8005
JavaScript
\u8005
Java
\u8005
Json
\u8005
Python
\u8005
Perl
\x{8005}
PHP
\x{8005}
Ruby
\u{8005}
Rust
\u{8005}
Go
\u8005

Web

CSS
\008005
HtmlDecimal
者
HtmlHexadecimal
者
Url
%E8%80%85

Code

MD5
b8639d5869682b7236de80cd77e161c7
Sha1
a9539ed7e67953d57496b3554009084cb6341703
Base64
6ICF

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8005';
console.log(char);  // Output: 者

Java:

char c = '\u8005';
System.out.println(c);  // Output: 者

JSON:

{"text": "\u8005"}  // Value: 者

Python:

char = '\u8005'
print(char)  # Output: 者

Perl:

my $char = "\x{8005}";
print $char;  # Output: 者

PHP:

$char = "\x{8005}";
echo $char;  // Output: 者

Ruby:

char = "\u{8005}"
puts char  # Output: 者

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008005";  /* Display: 者 */
}

HTML Decimal:

<p>HTML decimal: &#32773;</p>  <!-- Display: 者 -->

HTML Hexadecimal:

<p>HTML hex: &#x8005;</p>  <!-- Display: 者 -->

URL Encoding:

// 者 URL encoding
https://unicodefinder.com/search.php?query=%E8%80%85

Encodings

MD5:

b8639d5869682b7236de80cd77e161c7

SHA1:

a9539ed7e67953d57496b3554009084cb6341703

Base64:

6ICF