Unicode Finder

"貐" U+8C90(CJK UNIFIED IDEOGRAPH-8C90)

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

Programming

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

Web

CSS
\008C90
HtmlDecimal
貐
HtmlHexadecimal
貐
Url
%E8%B2%90

Code

MD5
e1c4f72d570e8c4bc000670ed5a87c4d
Sha1
d881e119f731269c2b197c7ab8ad88b85d0dbdb7
Base64
6LKQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8C90';
console.log(char);  // Output: 貐

Java:

char c = '\u8C90';
System.out.println(c);  // Output: 貐

JSON:

{"text": "\u8C90"}  // Value: 貐

Python:

char = '\u8C90'
print(char)  # Output: 貐

Perl:

my $char = "\x{8C90}";
print $char;  # Output: 貐

PHP:

$char = "\x{8C90}";
echo $char;  // Output: 貐

Ruby:

char = "\u{8C90}"
puts char  # Output: 貐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35984;</p>  <!-- Display: 貐 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C90;</p>  <!-- Display: 貐 -->

URL Encoding:

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

Encodings

MD5:

e1c4f72d570e8c4bc000670ed5a87c4d

SHA1:

d881e119f731269c2b197c7ab8ad88b85d0dbdb7

Base64:

6LKQ