Unicode Finder

"賞" U+8CDE(CJK UNIFIED IDEOGRAPH-8CDE)

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

Programming

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

Web

CSS
\008CDE
HtmlDecimal
賞
HtmlHexadecimal
賞
Url
%E8%B3%9E

Code

MD5
8b60b59dc5d93b8963f37249393b7e14
Sha1
be9eae2ba7bc51542625d7827fe68a5326e9eacb
Base64
6LOe

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8CDE';
console.log(char);  // Output: 賞

Java:

char c = '\u8CDE';
System.out.println(c);  // Output: 賞

JSON:

{"text": "\u8CDE"}  // Value: 賞

Python:

char = '\u8CDE'
print(char)  # Output: 賞

Perl:

my $char = "\x{8CDE}";
print $char;  # Output: 賞

PHP:

$char = "\x{8CDE}";
echo $char;  // Output: 賞

Ruby:

char = "\u{8CDE}"
puts char  # Output: 賞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36062;</p>  <!-- Display: 賞 -->

HTML Hexadecimal:

<p>HTML hex: &#x8CDE;</p>  <!-- Display: 賞 -->

URL Encoding:

// 賞 URL encoding
https://unicodefinder.com/search.php?query=%E8%B3%9E

Encodings

MD5:

8b60b59dc5d93b8963f37249393b7e14

SHA1:

be9eae2ba7bc51542625d7827fe68a5326e9eacb

Base64:

6LOe