Unicode Finder

"貰" U+8CB0(CJK UNIFIED IDEOGRAPH-8CB0)

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

Programming

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

Web

CSS
\008CB0
HtmlDecimal
貰
HtmlHexadecimal
貰
Url
%E8%B2%B0

Code

MD5
9f1a03f7a7553bc04fe00100a9cb2072
Sha1
4bcdfc20599b58418d7fac8ed1a24834f2e9ec7c
Base64
6LKw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8CB0';
console.log(char);  // Output: 貰

Java:

char c = '\u8CB0';
System.out.println(c);  // Output: 貰

JSON:

{"text": "\u8CB0"}  // Value: 貰

Python:

char = '\u8CB0'
print(char)  # Output: 貰

Perl:

my $char = "\x{8CB0}";
print $char;  # Output: 貰

PHP:

$char = "\x{8CB0}";
echo $char;  // Output: 貰

Ruby:

char = "\u{8CB0}"
puts char  # Output: 貰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36016;</p>  <!-- Display: 貰 -->

HTML Hexadecimal:

<p>HTML hex: &#x8CB0;</p>  <!-- Display: 貰 -->

URL Encoding:

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

Encodings

MD5:

9f1a03f7a7553bc04fe00100a9cb2072

SHA1:

4bcdfc20599b58418d7fac8ed1a24834f2e9ec7c

Base64:

6LKw