Unicode Finder

"耇" U+8007(CJK UNIFIED IDEOGRAPH-8007)

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

Programming

C
\u8007
JavaScript
\u8007
Java
\u8007
Json
\u8007
Python
\u8007
Perl
\x{8007}
PHP
\x{8007}
Ruby
\u{8007}
Rust
\u{8007}
Go
\u8007

Web

CSS
\008007
HtmlDecimal
耇
HtmlHexadecimal
耇
Url
%E8%80%87

Code

MD5
99ab578e2218a373e9286054de460b5e
Sha1
465cf8dfc19ced404a4e67fc31dcd2485be58c31
Base64
6ICH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8007';
console.log(char);  // Output: 耇

Java:

char c = '\u8007';
System.out.println(c);  // Output: 耇

JSON:

{"text": "\u8007"}  // Value: 耇

Python:

char = '\u8007'
print(char)  # Output: 耇

Perl:

my $char = "\x{8007}";
print $char;  # Output: 耇

PHP:

$char = "\x{8007}";
echo $char;  // Output: 耇

Ruby:

char = "\u{8007}"
puts char  # Output: 耇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008007";  /* Display: 耇 */
}

HTML Decimal:

<p>HTML decimal: &#32775;</p>  <!-- Display: 耇 -->

HTML Hexadecimal:

<p>HTML hex: &#x8007;</p>  <!-- Display: 耇 -->

URL Encoding:

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

Encodings

MD5:

99ab578e2218a373e9286054de460b5e

SHA1:

465cf8dfc19ced404a4e67fc31dcd2485be58c31

Base64:

6ICH