Unicode Finder

"藡" U+85E1(CJK UNIFIED IDEOGRAPH-85E1)

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

Programming

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

Web

CSS
\0085E1
HtmlDecimal
藡
HtmlHexadecimal
藡
Url
%E8%97%A1

Code

MD5
5e8d3ce3d4a025a7fafe3bbf3efda610
Sha1
af833154e5c9a817d67ec4f21d398733dbbdf05a
Base64
6Jeh

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u85E1';
console.log(char);  // Output: 藡

Java:

char c = '\u85E1';
System.out.println(c);  // Output: 藡

JSON:

{"text": "\u85E1"}  // Value: 藡

Python:

char = '\u85E1'
print(char)  # Output: 藡

Perl:

my $char = "\x{85E1}";
print $char;  # Output: 藡

PHP:

$char = "\x{85E1}";
echo $char;  // Output: 藡

Ruby:

char = "\u{85E1}"
puts char  # Output: 藡

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34273;</p>  <!-- Display: 藡 -->

HTML Hexadecimal:

<p>HTML hex: &#x85E1;</p>  <!-- Display: 藡 -->

URL Encoding:

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

Encodings

MD5:

5e8d3ce3d4a025a7fafe3bbf3efda610

SHA1:

af833154e5c9a817d67ec4f21d398733dbbdf05a

Base64:

6Jeh