Unicode Finder

"藄" U+85C4(CJK UNIFIED IDEOGRAPH-85C4)

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

Programming

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

Web

CSS
\0085C4
HtmlDecimal
藄
HtmlHexadecimal
藄
Url
%E8%97%84

Code

MD5
dc4de4b396bf59e096521f565c7ca15a
Sha1
5f7b7994baefbc9ee9eaf5ae6f52f4e960547e7e
Base64
6JeE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u85C4';
console.log(char);  // Output: 藄

Java:

char c = '\u85C4';
System.out.println(c);  // Output: 藄

JSON:

{"text": "\u85C4"}  // Value: 藄

Python:

char = '\u85C4'
print(char)  # Output: 藄

Perl:

my $char = "\x{85C4}";
print $char;  # Output: 藄

PHP:

$char = "\x{85C4}";
echo $char;  // Output: 藄

Ruby:

char = "\u{85C4}"
puts char  # Output: 藄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34244;</p>  <!-- Display: 藄 -->

HTML Hexadecimal:

<p>HTML hex: &#x85C4;</p>  <!-- Display: 藄 -->

URL Encoding:

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

Encodings

MD5:

dc4de4b396bf59e096521f565c7ca15a

SHA1:

5f7b7994baefbc9ee9eaf5ae6f52f4e960547e7e

Base64:

6JeE