Unicode Finder

"貃" U+8C83(CJK UNIFIED IDEOGRAPH-8C83)

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

Programming

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

Web

CSS
\008C83
HtmlDecimal
貃
HtmlHexadecimal
貃
Url
%E8%B2%83

Code

MD5
c0b71c47846b59fdc8460b0135f36541
Sha1
16e03f5e22ba2eff4698fb34f2edc5e3fe5d3559
Base64
6LKD

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8C83';
console.log(char);  // Output: 貃

Java:

char c = '\u8C83';
System.out.println(c);  // Output: 貃

JSON:

{"text": "\u8C83"}  // Value: 貃

Python:

char = '\u8C83'
print(char)  # Output: 貃

Perl:

my $char = "\x{8C83}";
print $char;  # Output: 貃

PHP:

$char = "\x{8C83}";
echo $char;  // Output: 貃

Ruby:

char = "\u{8C83}"
puts char  # Output: 貃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35971;</p>  <!-- Display: 貃 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C83;</p>  <!-- Display: 貃 -->

URL Encoding:

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

Encodings

MD5:

c0b71c47846b59fdc8460b0135f36541

SHA1:

16e03f5e22ba2eff4698fb34f2edc5e3fe5d3559

Base64:

6LKD