Unicode Finder

"賄" U+8CC4(CJK UNIFIED IDEOGRAPH-8CC4)

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

Programming

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

Web

CSS
\008CC4
HtmlDecimal
賄
HtmlHexadecimal
賄
Url
%E8%B3%84

Code

MD5
ed55f78823245af37cb3e5b7e6d061c7
Sha1
89d63b117936f3c26dde40ccb6cc1773df76b9c4
Base64
6LOE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8CC4';
console.log(char);  // Output: 賄

Java:

char c = '\u8CC4';
System.out.println(c);  // Output: 賄

JSON:

{"text": "\u8CC4"}  // Value: 賄

Python:

char = '\u8CC4'
print(char)  # Output: 賄

Perl:

my $char = "\x{8CC4}";
print $char;  # Output: 賄

PHP:

$char = "\x{8CC4}";
echo $char;  // Output: 賄

Ruby:

char = "\u{8CC4}"
puts char  # Output: 賄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36036;</p>  <!-- Display: 賄 -->

HTML Hexadecimal:

<p>HTML hex: &#x8CC4;</p>  <!-- Display: 賄 -->

URL Encoding:

// 賄 URL encoding
https://unicodefinder.com/search.php?query=%E8%B3%84

Encodings

MD5:

ed55f78823245af37cb3e5b7e6d061c7

SHA1:

89d63b117936f3c26dde40ccb6cc1773df76b9c4

Base64:

6LOE