Unicode Finder

"賁" U+8CC1(CJK UNIFIED IDEOGRAPH-8CC1)

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

Programming

C
\u8CC1
JavaScript
\u8CC1
Java
\u8CC1
Json
\u8CC1
Python
\u8CC1
Perl
\x{8CC1}
PHP
\x{8CC1}
Ruby
\u{8CC1}
Rust
\u{8CC1}
Go
\u8CC1

Web

CSS
\008CC1
HtmlDecimal
賁
HtmlHexadecimal
賁
Url
%E8%B3%81

Code

MD5
ca6e68d468e83c143a9b1dd802f78aab
Sha1
1bd0f476c8d40a22bf3f9f0303c2009ca8df62d3
Base64
6LOB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8CC1';
console.log(char);  // Output: 賁

Java:

char c = '\u8CC1';
System.out.println(c);  // Output: 賁

JSON:

{"text": "\u8CC1"}  // Value: 賁

Python:

char = '\u8CC1'
print(char)  # Output: 賁

Perl:

my $char = "\x{8CC1}";
print $char;  # Output: 賁

PHP:

$char = "\x{8CC1}";
echo $char;  // Output: 賁

Ruby:

char = "\u{8CC1}"
puts char  # Output: 賁

Rust:

let c = '\u{8CC1}';
println!("{}", c);  // Output: 賁

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008CC1";  /* Display: 賁 */
}

HTML Decimal:

<p>HTML decimal: &#36033;</p>  <!-- Display: 賁 -->

HTML Hexadecimal:

<p>HTML hex: &#x8CC1;</p>  <!-- Display: 賁 -->

URL Encoding:

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

Encodings

MD5:

ca6e68d468e83c143a9b1dd802f78aab

SHA1:

1bd0f476c8d40a22bf3f9f0303c2009ca8df62d3

Base64:

6LOB