Unicode Finder

"苙" U+82D9(CJK UNIFIED IDEOGRAPH-82D9)

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

Programming

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

Web

CSS
\0082D9
HtmlDecimal
苙
HtmlHexadecimal
苙
Url
%E8%8B%99

Code

MD5
d54e76ae5f995fc0cafdb459b9fd108c
Sha1
d536ca83dc05368963bb73dbcd11c2698061c4f3
Base64
6IuZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u82D9';
console.log(char);  // Output: 苙

Java:

char c = '\u82D9';
System.out.println(c);  // Output: 苙

JSON:

{"text": "\u82D9"}  // Value: 苙

Python:

char = '\u82D9'
print(char)  # Output: 苙

Perl:

my $char = "\x{82D9}";
print $char;  # Output: 苙

PHP:

$char = "\x{82D9}";
echo $char;  // Output: 苙

Ruby:

char = "\u{82D9}"
puts char  # Output: 苙

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33497;</p>  <!-- Display: 苙 -->

HTML Hexadecimal:

<p>HTML hex: &#x82D9;</p>  <!-- Display: 苙 -->

URL Encoding:

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

Encodings

MD5:

d54e76ae5f995fc0cafdb459b9fd108c

SHA1:

d536ca83dc05368963bb73dbcd11c2698061c4f3

Base64:

6IuZ