Unicode Finder

"賺" U+8CFA(CJK UNIFIED IDEOGRAPH-8CFA)

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

Programming

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

Web

CSS
\008CFA
HtmlDecimal
賺
HtmlHexadecimal
賺
Url
%E8%B3%BA

Code

MD5
35046aa52bdf52fa73402a815e172548
Sha1
82f09eaa1fe291dd52b2c35dfd34e616290b7a9d
Base64
6LO6

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8CFA';
console.log(char);  // Output: 賺

Java:

char c = '\u8CFA';
System.out.println(c);  // Output: 賺

JSON:

{"text": "\u8CFA"}  // Value: 賺

Python:

char = '\u8CFA'
print(char)  # Output: 賺

Perl:

my $char = "\x{8CFA}";
print $char;  # Output: 賺

PHP:

$char = "\x{8CFA}";
echo $char;  // Output: 賺

Ruby:

char = "\u{8CFA}"
puts char  # Output: 賺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36090;</p>  <!-- Display: 賺 -->

HTML Hexadecimal:

<p>HTML hex: &#x8CFA;</p>  <!-- Display: 賺 -->

URL Encoding:

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

Encodings

MD5:

35046aa52bdf52fa73402a815e172548

SHA1:

82f09eaa1fe291dd52b2c35dfd34e616290b7a9d

Base64:

6LO6