Unicode Finder

"藏" U+85CF(CJK UNIFIED IDEOGRAPH-85CF)

U+85CF
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-85CF

Programming

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

Web

CSS
\0085CF
HtmlDecimal
藏
HtmlHexadecimal
藏
Url
%E8%97%8F

Code

MD5
b0122641237d650ea4881ab3a6662317
Sha1
a6c9557b8c294793cbb6214a02ceecb71cfc10ca
Base64
6JeP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u85CF';
console.log(char);  // Output: 藏

Java:

char c = '\u85CF';
System.out.println(c);  // Output: 藏

JSON:

{"text": "\u85CF"}  // Value: 藏

Python:

char = '\u85CF'
print(char)  # Output: 藏

Perl:

my $char = "\x{85CF}";
print $char;  # Output: 藏

PHP:

$char = "\x{85CF}";
echo $char;  // Output: 藏

Ruby:

char = "\u{85CF}"
puts char  # Output: 藏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34255;</p>  <!-- Display: 藏 -->

HTML Hexadecimal:

<p>HTML hex: &#x85CF;</p>  <!-- Display: 藏 -->

URL Encoding:

// 藏 URL encoding
https://unicodefinder.com/search.php?query=%E8%97%8F

Encodings

MD5:

b0122641237d650ea4881ab3a6662317

SHA1:

a6c9557b8c294793cbb6214a02ceecb71cfc10ca

Base64:

6JeP