Unicode Finder

"侇" U+4F87(CJK UNIFIED IDEOGRAPH-4F87)

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

Programming

C
\u4F87
JavaScript
\u4F87
Java
\u4F87
Json
\u4F87
Python
\u4F87
Perl
\x{4F87}
PHP
\x{4F87}
Ruby
\u{4F87}
Rust
\u{4F87}
Go
\u4F87

Web

CSS
\004F87
HtmlDecimal
侇
HtmlHexadecimal
侇
Url
%E4%BE%87

Code

MD5
1bceab895dbdd667c68271e72598d4e2
Sha1
ba530256d5151938dd295438cc9428f0d500a1f7
Base64
5L6H

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u4F87';
console.log(char);  // Output: 侇

Java:

char c = '\u4F87';
System.out.println(c);  // Output: 侇

JSON:

{"text": "\u4F87"}  // Value: 侇

Python:

char = '\u4F87'
print(char)  # Output: 侇

Perl:

my $char = "\x{4F87}";
print $char;  # Output: 侇

PHP:

$char = "\x{4F87}";
echo $char;  // Output: 侇

Ruby:

char = "\u{4F87}"
puts char  # Output: 侇

Rust:

let c = '\u{4F87}';
println!("{}", c);  // Output: 侇

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\004F87";  /* Display: 侇 */
}

HTML Decimal:

<p>HTML decimal: &#20359;</p>  <!-- Display: 侇 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F87;</p>  <!-- Display: 侇 -->

URL Encoding:

// 侇 URL encoding
https://unicodefinder.com/search.php?query=%E4%BE%87

Encodings

MD5:

1bceab895dbdd667c68271e72598d4e2

SHA1:

ba530256d5151938dd295438cc9428f0d500a1f7

Base64:

5L6H