Unicode Finder

"苀" U+82C0(CJK UNIFIED IDEOGRAPH-82C0)

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

Programming

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

Web

CSS
\0082C0
HtmlDecimal
苀
HtmlHexadecimal
苀
Url
%E8%8B%80

Code

MD5
e95c69ac44e4a4e2d8728d3f6b7fc6e2
Sha1
c24c05adda2392aa8be90a37c697139d58988bec
Base64
6IuA

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u82C0';
console.log(char);  // Output: 苀

Java:

char c = '\u82C0';
System.out.println(c);  // Output: 苀

JSON:

{"text": "\u82C0"}  // Value: 苀

Python:

char = '\u82C0'
print(char)  # Output: 苀

Perl:

my $char = "\x{82C0}";
print $char;  # Output: 苀

PHP:

$char = "\x{82C0}";
echo $char;  // Output: 苀

Ruby:

char = "\u{82C0}"
puts char  # Output: 苀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33472;</p>  <!-- Display: 苀 -->

HTML Hexadecimal:

<p>HTML hex: &#x82C0;</p>  <!-- Display: 苀 -->

URL Encoding:

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

Encodings

MD5:

e95c69ac44e4a4e2d8728d3f6b7fc6e2

SHA1:

c24c05adda2392aa8be90a37c697139d58988bec

Base64:

6IuA