Unicode Finder

"賲" U+8CF2(CJK UNIFIED IDEOGRAPH-8CF2)

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

Programming

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

Web

CSS
\008CF2
HtmlDecimal
賲
HtmlHexadecimal
賲
Url
%E8%B3%B2

Code

MD5
1c01c384eb478f9f014b14e082480a3b
Sha1
9bcd39fa6925478e8864083df5295ed5408450b3
Base64
6LOy

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8CF2';
console.log(char);  // Output: 賲

Java:

char c = '\u8CF2';
System.out.println(c);  // Output: 賲

JSON:

{"text": "\u8CF2"}  // Value: 賲

Python:

char = '\u8CF2'
print(char)  # Output: 賲

Perl:

my $char = "\x{8CF2}";
print $char;  # Output: 賲

PHP:

$char = "\x{8CF2}";
echo $char;  // Output: 賲

Ruby:

char = "\u{8CF2}"
puts char  # Output: 賲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36082;</p>  <!-- Display: 賲 -->

HTML Hexadecimal:

<p>HTML hex: &#x8CF2;</p>  <!-- Display: 賲 -->

URL Encoding:

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

Encodings

MD5:

1c01c384eb478f9f014b14e082480a3b

SHA1:

9bcd39fa6925478e8864083df5295ed5408450b3

Base64:

6LOy