Unicode Finder

"藂" U+85C2(CJK UNIFIED IDEOGRAPH-85C2)

U+85C2
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-85C2

Programming

C
\u85C2
JavaScript
\u85C2
Java
\u85C2
Json
\u85C2
Python
\u85C2
Perl
\x{85C2}
PHP
\x{85C2}
Ruby
\u{85C2}
Rust
\u{85C2}
Go
\u85C2

Web

CSS
\0085C2
HtmlDecimal
藂
HtmlHexadecimal
藂
Url
%E8%97%82

Code

MD5
c8fa726ad318180bdc12dbd4addced75
Sha1
269f4eb10949b72debe9da1c27402235cf989c1b
Base64
6JeC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u85C2';
console.log(char);  // Output: 藂

Java:

char c = '\u85C2';
System.out.println(c);  // Output: 藂

JSON:

{"text": "\u85C2"}  // Value: 藂

Python:

char = '\u85C2'
print(char)  # Output: 藂

Perl:

my $char = "\x{85C2}";
print $char;  # Output: 藂

PHP:

$char = "\x{85C2}";
echo $char;  // Output: 藂

Ruby:

char = "\u{85C2}"
puts char  # Output: 藂

Rust:

let c = '\u{85C2}';
println!("{}", c);  // Output: 藂

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0085C2";  /* Display: 藂 */
}

HTML Decimal:

<p>HTML decimal: &#34242;</p>  <!-- Display: 藂 -->

HTML Hexadecimal:

<p>HTML hex: &#x85C2;</p>  <!-- Display: 藂 -->

URL Encoding:

// 藂 URL encoding
https://unicodefinder.com/search.php?query=%E8%97%82

Encodings

MD5:

c8fa726ad318180bdc12dbd4addced75

SHA1:

269f4eb10949b72debe9da1c27402235cf989c1b

Base64:

6JeC