Unicode Finder

"螅" U+8785(CJK UNIFIED IDEOGRAPH-8785)

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

Programming

C
\u8785
JavaScript
\u8785
Java
\u8785
Json
\u8785
Python
\u8785
Perl
\x{8785}
PHP
\x{8785}
Ruby
\u{8785}
Rust
\u{8785}
Go
\u8785

Web

CSS
\008785
HtmlDecimal
螅
HtmlHexadecimal
螅
Url
%E8%9E%85

Code

MD5
2468c31a913304a56c1781b085a6a1a0
Sha1
234eef9df5fd363f8117f396411cb337efea29a3
Base64
6J6F

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8785';
console.log(char);  // Output: 螅

Java:

char c = '\u8785';
System.out.println(c);  // Output: 螅

JSON:

{"text": "\u8785"}  // Value: 螅

Python:

char = '\u8785'
print(char)  # Output: 螅

Perl:

my $char = "\x{8785}";
print $char;  # Output: 螅

PHP:

$char = "\x{8785}";
echo $char;  // Output: 螅

Ruby:

char = "\u{8785}"
puts char  # Output: 螅

Rust:

let c = '\u{8785}';
println!("{}", c);  // Output: 螅

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008785";  /* Display: 螅 */
}

HTML Decimal:

<p>HTML decimal: &#34693;</p>  <!-- Display: 螅 -->

HTML Hexadecimal:

<p>HTML hex: &#x8785;</p>  <!-- Display: 螅 -->

URL Encoding:

// 螅 URL encoding
https://unicodefinder.com/search.php?query=%E8%9E%85

Encodings

MD5:

2468c31a913304a56c1781b085a6a1a0

SHA1:

234eef9df5fd363f8117f396411cb337efea29a3

Base64:

6J6F