Unicode Finder

"耂" U+8002(CJK UNIFIED IDEOGRAPH-8002)

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

Programming

C
\u8002
JavaScript
\u8002
Java
\u8002
Json
\u8002
Python
\u8002
Perl
\x{8002}
PHP
\x{8002}
Ruby
\u{8002}
Rust
\u{8002}
Go
\u8002

Web

CSS
\008002
HtmlDecimal
耂
HtmlHexadecimal
耂
Url
%E8%80%82

Code

MD5
9580d98686cec81a4ce57ea12fe84ac8
Sha1
5817d773132d93cb18ce76d67cec0041b6770180
Base64
6ICC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8002';
console.log(char);  // Output: 耂

Java:

char c = '\u8002';
System.out.println(c);  // Output: 耂

JSON:

{"text": "\u8002"}  // Value: 耂

Python:

char = '\u8002'
print(char)  # Output: 耂

Perl:

my $char = "\x{8002}";
print $char;  # Output: 耂

PHP:

$char = "\x{8002}";
echo $char;  // Output: 耂

Ruby:

char = "\u{8002}"
puts char  # Output: 耂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008002";  /* Display: 耂 */
}

HTML Decimal:

<p>HTML decimal: &#32770;</p>  <!-- Display: 耂 -->

HTML Hexadecimal:

<p>HTML hex: &#x8002;</p>  <!-- Display: 耂 -->

URL Encoding:

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

Encodings

MD5:

9580d98686cec81a4ce57ea12fe84ac8

SHA1:

5817d773132d93cb18ce76d67cec0041b6770180

Base64:

6ICC