Unicode Finder

"苍" U+82CD(CJK UNIFIED IDEOGRAPH-82CD)

U+82CD
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-82CD

Programming

C
\u82CD
JavaScript
\u82CD
Java
\u82CD
Json
\u82CD
Python
\u82CD
Perl
\x{82CD}
PHP
\x{82CD}
Ruby
\u{82CD}
Rust
\u{82CD}
Go
\u82CD

Web

CSS
\0082CD
HtmlDecimal
苍
HtmlHexadecimal
苍
Url
%E8%8B%8D

Code

MD5
7c91e9bd285bc9d2343ab951fb148e79
Sha1
351ceeb55d086d964979422ec6d93503a9033227
Base64
6IuN

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u82CD';
console.log(char);  // Output: 苍

Java:

char c = '\u82CD';
System.out.println(c);  // Output: 苍

JSON:

{"text": "\u82CD"}  // Value: 苍

Python:

char = '\u82CD'
print(char)  # Output: 苍

Perl:

my $char = "\x{82CD}";
print $char;  # Output: 苍

PHP:

$char = "\x{82CD}";
echo $char;  // Output: 苍

Ruby:

char = "\u{82CD}"
puts char  # Output: 苍

Rust:

let c = '\u{82CD}';
println!("{}", c);  // Output: 苍

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0082CD";  /* Display: 苍 */
}

HTML Decimal:

<p>HTML decimal: &#33485;</p>  <!-- Display: 苍 -->

HTML Hexadecimal:

<p>HTML hex: &#x82CD;</p>  <!-- Display: 苍 -->

URL Encoding:

// 苍 URL encoding
https://unicodefinder.com/search.php?query=%E8%8B%8D

Encodings

MD5:

7c91e9bd285bc9d2343ab951fb148e79

SHA1:

351ceeb55d086d964979422ec6d93503a9033227

Base64:

6IuN