Unicode Finder

"財" U+8CA1(CJK UNIFIED IDEOGRAPH-8CA1)

U+8CA1
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8CA1

Programming

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

Web

CSS
\008CA1
HtmlDecimal
財
HtmlHexadecimal
財
Url
%E8%B2%A1

Code

MD5
67babe77d77e02b54cd20540d209827d
Sha1
72d148251eaee4627e08eb78cfbdfa03dcec8b96
Base64
6LKh

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8CA1';
console.log(char);  // Output: 財

Java:

char c = '\u8CA1';
System.out.println(c);  // Output: 財

JSON:

{"text": "\u8CA1"}  // Value: 財

Python:

char = '\u8CA1'
print(char)  # Output: 財

Perl:

my $char = "\x{8CA1}";
print $char;  # Output: 財

PHP:

$char = "\x{8CA1}";
echo $char;  // Output: 財

Ruby:

char = "\u{8CA1}"
puts char  # Output: 財

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36001;</p>  <!-- Display: 財 -->

HTML Hexadecimal:

<p>HTML hex: &#x8CA1;</p>  <!-- Display: 財 -->

URL Encoding:

// 財 URL encoding
https://unicodefinder.com/search.php?query=%E8%B2%A1

Encodings

MD5:

67babe77d77e02b54cd20540d209827d

SHA1:

72d148251eaee4627e08eb78cfbdfa03dcec8b96

Base64:

6LKh