Unicode Finder

"补" U+8865(CJK UNIFIED IDEOGRAPH-8865)

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

Programming

C
\u8865
JavaScript
\u8865
Java
\u8865
Json
\u8865
Python
\u8865
Perl
\x{8865}
PHP
\x{8865}
Ruby
\u{8865}
Rust
\u{8865}
Go
\u8865

Web

CSS
\008865
HtmlDecimal
补
HtmlHexadecimal
补
Url
%E8%A1%A5

Code

MD5
c7281e260a9c4261a31e346cc80ff6cc
Sha1
afde079e1588d188108f85c5e4e3df922363fb92
Base64
6KGl

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8865';
console.log(char);  // Output: 补

Java:

char c = '\u8865';
System.out.println(c);  // Output: 补

JSON:

{"text": "\u8865"}  // Value: 补

Python:

char = '\u8865'
print(char)  # Output: 补

Perl:

my $char = "\x{8865}";
print $char;  # Output: 补

PHP:

$char = "\x{8865}";
echo $char;  // Output: 补

Ruby:

char = "\u{8865}"
puts char  # Output: 补

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008865";  /* Display: 补 */
}

HTML Decimal:

<p>HTML decimal: &#34917;</p>  <!-- Display: 补 -->

HTML Hexadecimal:

<p>HTML hex: &#x8865;</p>  <!-- Display: 补 -->

URL Encoding:

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

Encodings

MD5:

c7281e260a9c4261a31e346cc80ff6cc

SHA1:

afde079e1588d188108f85c5e4e3df922363fb92

Base64:

6KGl