Unicode Finder

"苋" U+82CB(CJK UNIFIED IDEOGRAPH-82CB)

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

Programming

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

Web

CSS
\0082CB
HtmlDecimal
苋
HtmlHexadecimal
苋
Url
%E8%8B%8B

Code

MD5
fc60adb0aaaae75753d87f58413e9b47
Sha1
c228c973a790e90e9dedeeff7368864fa8a7800c
Base64
6IuL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u82CB';
console.log(char);  // Output: 苋

Java:

char c = '\u82CB';
System.out.println(c);  // Output: 苋

JSON:

{"text": "\u82CB"}  // Value: 苋

Python:

char = '\u82CB'
print(char)  # Output: 苋

Perl:

my $char = "\x{82CB}";
print $char;  # Output: 苋

PHP:

$char = "\x{82CB}";
echo $char;  // Output: 苋

Ruby:

char = "\u{82CB}"
puts char  # Output: 苋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33483;</p>  <!-- Display: 苋 -->

HTML Hexadecimal:

<p>HTML hex: &#x82CB;</p>  <!-- Display: 苋 -->

URL Encoding:

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

Encodings

MD5:

fc60adb0aaaae75753d87f58413e9b47

SHA1:

c228c973a790e90e9dedeeff7368864fa8a7800c

Base64:

6IuL