Unicode Finder

"苆" U+82C6(CJK UNIFIED IDEOGRAPH-82C6)

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

Programming

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

Web

CSS
\0082C6
HtmlDecimal
苆
HtmlHexadecimal
苆
Url
%E8%8B%86

Code

MD5
95003c5329109703e40096019009fd2d
Sha1
2ad827fd79802ad1adfe18bfd84fb6cab89cc455
Base64
6IuG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u82C6';
console.log(char);  // Output: 苆

Java:

char c = '\u82C6';
System.out.println(c);  // Output: 苆

JSON:

{"text": "\u82C6"}  // Value: 苆

Python:

char = '\u82C6'
print(char)  # Output: 苆

Perl:

my $char = "\x{82C6}";
print $char;  # Output: 苆

PHP:

$char = "\x{82C6}";
echo $char;  // Output: 苆

Ruby:

char = "\u{82C6}"
puts char  # Output: 苆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33478;</p>  <!-- Display: 苆 -->

HTML Hexadecimal:

<p>HTML hex: &#x82C6;</p>  <!-- Display: 苆 -->

URL Encoding:

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

Encodings

MD5:

95003c5329109703e40096019009fd2d

SHA1:

2ad827fd79802ad1adfe18bfd84fb6cab89cc455

Base64:

6IuG