Unicode Finder

"蝏" U+874F(CJK UNIFIED IDEOGRAPH-874F)

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

Programming

C
\u874F
JavaScript
\u874F
Java
\u874F
Json
\u874F
Python
\u874F
Perl
\x{874F}
PHP
\x{874F}
Ruby
\u{874F}
Rust
\u{874F}
Go
\u874F

Web

CSS
\00874F
HtmlDecimal
蝏
HtmlHexadecimal
蝏
Url
%E8%9D%8F

Code

MD5
6fc29f89b6a43fc4aa9969aaadf550d4
Sha1
31694ead8b648f0d610e510e094045a26b1ebede
Base64
6J2P

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u874F';
console.log(char);  // Output: 蝏

Java:

char c = '\u874F';
System.out.println(c);  // Output: 蝏

JSON:

{"text": "\u874F"}  // Value: 蝏

Python:

char = '\u874F'
print(char)  # Output: 蝏

Perl:

my $char = "\x{874F}";
print $char;  # Output: 蝏

PHP:

$char = "\x{874F}";
echo $char;  // Output: 蝏

Ruby:

char = "\u{874F}"
puts char  # Output: 蝏

Rust:

let c = '\u{874F}';
println!("{}", c);  // Output: 蝏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00874F";  /* Display: 蝏 */
}

HTML Decimal:

<p>HTML decimal: &#34639;</p>  <!-- Display: 蝏 -->

HTML Hexadecimal:

<p>HTML hex: &#x874F;</p>  <!-- Display: 蝏 -->

URL Encoding:

// 蝏 URL encoding
https://unicodefinder.com/search.php?query=%E8%9D%8F

Encodings

MD5:

6fc29f89b6a43fc4aa9969aaadf550d4

SHA1:

31694ead8b648f0d610e510e094045a26b1ebede

Base64:

6J2P