Unicode Finder

"顜" U+985C(CJK UNIFIED IDEOGRAPH-985C)

U+985C
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-985C

Programming

C
\u985C
JavaScript
\u985C
Java
\u985C
Json
\u985C
Python
\u985C
Perl
\x{985C}
PHP
\x{985C}
Ruby
\u{985C}
Rust
\u{985C}
Go
\u985C

Web

CSS
\00985C
HtmlDecimal
顜
HtmlHexadecimal
顜
Url
%E9%A1%9C

Code

MD5
40447a6aee740869c2da7c4f62321fe5
Sha1
a070dfcd91248a6779ff97bb3e5cce5e85a3933f
Base64
6aGc

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u985C';
console.log(char);  // Output: 顜

Java:

char c = '\u985C';
System.out.println(c);  // Output: 顜

JSON:

{"text": "\u985C"}  // Value: 顜

Python:

char = '\u985C'
print(char)  # Output: 顜

Perl:

my $char = "\x{985C}";
print $char;  # Output: 顜

PHP:

$char = "\x{985C}";
echo $char;  // Output: 顜

Ruby:

char = "\u{985C}"
puts char  # Output: 顜

Rust:

let c = '\u{985C}';
println!("{}", c);  // Output: 顜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00985C";  /* Display: 顜 */
}

HTML Decimal:

<p>HTML decimal: &#39004;</p>  <!-- Display: 顜 -->

HTML Hexadecimal:

<p>HTML hex: &#x985C;</p>  <!-- Display: 顜 -->

URL Encoding:

// 顜 URL encoding
https://unicodefinder.com/search.php?query=%E9%A1%9C

Encodings

MD5:

40447a6aee740869c2da7c4f62321fe5

SHA1:

a070dfcd91248a6779ff97bb3e5cce5e85a3933f

Base64:

6aGc