Unicode Finder

"賬" U+8CEC(CJK UNIFIED IDEOGRAPH-8CEC)

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

Programming

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

Web

CSS
\008CEC
HtmlDecimal
賬
HtmlHexadecimal
賬
Url
%E8%B3%AC

Code

MD5
60e410c8401d23c92cfdee12e66392b1
Sha1
4f2a6d1cad708f52b4b213d580680f7047d1e68b
Base64
6LOs

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8CEC';
console.log(char);  // Output: 賬

Java:

char c = '\u8CEC';
System.out.println(c);  // Output: 賬

JSON:

{"text": "\u8CEC"}  // Value: 賬

Python:

char = '\u8CEC'
print(char)  # Output: 賬

Perl:

my $char = "\x{8CEC}";
print $char;  # Output: 賬

PHP:

$char = "\x{8CEC}";
echo $char;  // Output: 賬

Ruby:

char = "\u{8CEC}"
puts char  # Output: 賬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36076;</p>  <!-- Display: 賬 -->

HTML Hexadecimal:

<p>HTML hex: &#x8CEC;</p>  <!-- Display: 賬 -->

URL Encoding:

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

Encodings

MD5:

60e410c8401d23c92cfdee12e66392b1

SHA1:

4f2a6d1cad708f52b4b213d580680f7047d1e68b

Base64:

6LOs