Unicode Finder

"蒇" U+8487(CJK UNIFIED IDEOGRAPH-8487)

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

Programming

C
\u8487
JavaScript
\u8487
Java
\u8487
Json
\u8487
Python
\u8487
Perl
\x{8487}
PHP
\x{8487}
Ruby
\u{8487}
Rust
\u{8487}
Go
\u8487

Web

CSS
\008487
HtmlDecimal
蒇
HtmlHexadecimal
蒇
Url
%E8%92%87

Code

MD5
369d7efce7bdaff0cf0fb8cf08bceb82
Sha1
778b7e5cdd93f2a5454fb318d9fc1234b0f56578
Base64
6JKH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8487';
console.log(char);  // Output: 蒇

Java:

char c = '\u8487';
System.out.println(c);  // Output: 蒇

JSON:

{"text": "\u8487"}  // Value: 蒇

Python:

char = '\u8487'
print(char)  # Output: 蒇

Perl:

my $char = "\x{8487}";
print $char;  # Output: 蒇

PHP:

$char = "\x{8487}";
echo $char;  // Output: 蒇

Ruby:

char = "\u{8487}"
puts char  # Output: 蒇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008487";  /* Display: 蒇 */
}

HTML Decimal:

<p>HTML decimal: &#33927;</p>  <!-- Display: 蒇 -->

HTML Hexadecimal:

<p>HTML hex: &#x8487;</p>  <!-- Display: 蒇 -->

URL Encoding:

// 蒇 URL encoding
https://unicodefinder.com/search.php?query=%E8%92%87

Encodings

MD5:

369d7efce7bdaff0cf0fb8cf08bceb82

SHA1:

778b7e5cdd93f2a5454fb318d9fc1234b0f56578

Base64:

6JKH