Unicode Finder

"衐" U+8850(CJK UNIFIED IDEOGRAPH-8850)

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

Programming

C
\u8850
JavaScript
\u8850
Java
\u8850
Json
\u8850
Python
\u8850
Perl
\x{8850}
PHP
\x{8850}
Ruby
\u{8850}
Rust
\u{8850}
Go
\u8850

Web

CSS
\008850
HtmlDecimal
衐
HtmlHexadecimal
衐
Url
%E8%A1%90

Code

MD5
5d2c0ff07f5f16732e459e2c925fccf5
Sha1
e50e1b7da2f5c318aa9a8b74f495da9aa7e6f487
Base64
6KGQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8850';
console.log(char);  // Output: 衐

Java:

char c = '\u8850';
System.out.println(c);  // Output: 衐

JSON:

{"text": "\u8850"}  // Value: 衐

Python:

char = '\u8850'
print(char)  # Output: 衐

Perl:

my $char = "\x{8850}";
print $char;  # Output: 衐

PHP:

$char = "\x{8850}";
echo $char;  // Output: 衐

Ruby:

char = "\u{8850}"
puts char  # Output: 衐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008850";  /* Display: 衐 */
}

HTML Decimal:

<p>HTML decimal: &#34896;</p>  <!-- Display: 衐 -->

HTML Hexadecimal:

<p>HTML hex: &#x8850;</p>  <!-- Display: 衐 -->

URL Encoding:

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

Encodings

MD5:

5d2c0ff07f5f16732e459e2c925fccf5

SHA1:

e50e1b7da2f5c318aa9a8b74f495da9aa7e6f487

Base64:

6KGQ