Unicode Finder

"貭" U+8CAD(CJK UNIFIED IDEOGRAPH-8CAD)

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

Programming

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

Web

CSS
\008CAD
HtmlDecimal
貭
HtmlHexadecimal
貭
Url
%E8%B2%AD

Code

MD5
c5a98d7d9b8d0f5a60155384c50976e0
Sha1
bee98c54b5ab4e7374a62a036ac6796dac5473f6
Base64
6LKt

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8CAD';
console.log(char);  // Output: 貭

Java:

char c = '\u8CAD';
System.out.println(c);  // Output: 貭

JSON:

{"text": "\u8CAD"}  // Value: 貭

Python:

char = '\u8CAD'
print(char)  # Output: 貭

Perl:

my $char = "\x{8CAD}";
print $char;  # Output: 貭

PHP:

$char = "\x{8CAD}";
echo $char;  // Output: 貭

Ruby:

char = "\u{8CAD}"
puts char  # Output: 貭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36013;</p>  <!-- Display: 貭 -->

HTML Hexadecimal:

<p>HTML hex: &#x8CAD;</p>  <!-- Display: 貭 -->

URL Encoding:

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

Encodings

MD5:

c5a98d7d9b8d0f5a60155384c50976e0

SHA1:

bee98c54b5ab4e7374a62a036ac6796dac5473f6

Base64:

6LKt