Unicode Finder

"薣" U+85A3(CJK UNIFIED IDEOGRAPH-85A3)

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

Programming

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

Web

CSS
\0085A3
HtmlDecimal
薣
HtmlHexadecimal
薣
Url
%E8%96%A3

Code

MD5
c366ca68622173f89178beca735c9349
Sha1
0c0f0981f0c7484bdc003f980f7e43c3df961ee8
Base64
6Jaj

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u85A3';
console.log(char);  // Output: 薣

Java:

char c = '\u85A3';
System.out.println(c);  // Output: 薣

JSON:

{"text": "\u85A3"}  // Value: 薣

Python:

char = '\u85A3'
print(char)  # Output: 薣

Perl:

my $char = "\x{85A3}";
print $char;  # Output: 薣

PHP:

$char = "\x{85A3}";
echo $char;  // Output: 薣

Ruby:

char = "\u{85A3}"
puts char  # Output: 薣

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34211;</p>  <!-- Display: 薣 -->

HTML Hexadecimal:

<p>HTML hex: &#x85A3;</p>  <!-- Display: 薣 -->

URL Encoding:

// 薣 URL encoding
https://unicodefinder.com/search.php?query=%E8%96%A3

Encodings

MD5:

c366ca68622173f89178beca735c9349

SHA1:

0c0f0981f0c7484bdc003f980f7e43c3df961ee8

Base64:

6Jaj