Unicode Finder

"螃" U+8783(CJK UNIFIED IDEOGRAPH-8783)

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

Programming

C
\u8783
JavaScript
\u8783
Java
\u8783
Json
\u8783
Python
\u8783
Perl
\x{8783}
PHP
\x{8783}
Ruby
\u{8783}
Rust
\u{8783}
Go
\u8783

Web

CSS
\008783
HtmlDecimal
螃
HtmlHexadecimal
螃
Url
%E8%9E%83

Code

MD5
aac2c4f70c8ce5e771f2d56c72592f20
Sha1
f90beb28f6c404e2fc4135c5dfed4ee874256a8a
Base64
6J6D

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8783';
console.log(char);  // Output: 螃

Java:

char c = '\u8783';
System.out.println(c);  // Output: 螃

JSON:

{"text": "\u8783"}  // Value: 螃

Python:

char = '\u8783'
print(char)  # Output: 螃

Perl:

my $char = "\x{8783}";
print $char;  # Output: 螃

PHP:

$char = "\x{8783}";
echo $char;  // Output: 螃

Ruby:

char = "\u{8783}"
puts char  # Output: 螃

Rust:

let c = '\u{8783}';
println!("{}", c);  // Output: 螃

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008783";  /* Display: 螃 */
}

HTML Decimal:

<p>HTML decimal: &#34691;</p>  <!-- Display: 螃 -->

HTML Hexadecimal:

<p>HTML hex: &#x8783;</p>  <!-- Display: 螃 -->

URL Encoding:

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

Encodings

MD5:

aac2c4f70c8ce5e771f2d56c72592f20

SHA1:

f90beb28f6c404e2fc4135c5dfed4ee874256a8a

Base64:

6J6D