Unicode Finder

"附" U+9644(CJK UNIFIED IDEOGRAPH-9644)

U+9644
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-9644

Programming

C
\u9644
JavaScript
\u9644
Java
\u9644
Json
\u9644
Python
\u9644
Perl
\x{9644}
PHP
\x{9644}
Ruby
\u{9644}
Rust
\u{9644}
Go
\u9644

Web

CSS
\009644
HtmlDecimal
附
HtmlHexadecimal
附
Url
%E9%99%84

Code

MD5
f983327e15a08327f65e3e1967ca0a7e
Sha1
be9a473ef7c378923272c6b6bd8b0a172206b72a
Base64
6ZmE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9644';
console.log(char);  // Output: 附

Java:

char c = '\u9644';
System.out.println(c);  // Output: 附

JSON:

{"text": "\u9644"}  // Value: 附

Python:

char = '\u9644'
print(char)  # Output: 附

Perl:

my $char = "\x{9644}";
print $char;  # Output: 附

PHP:

$char = "\x{9644}";
echo $char;  // Output: 附

Ruby:

char = "\u{9644}"
puts char  # Output: 附

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009644";  /* Display: 附 */
}

HTML Decimal:

<p>HTML decimal: &#38468;</p>  <!-- Display: 附 -->

HTML Hexadecimal:

<p>HTML hex: &#x9644;</p>  <!-- Display: 附 -->

URL Encoding:

// 附 URL encoding
https://unicodefinder.com/search.php?query=%E9%99%84

Encodings

MD5:

f983327e15a08327f65e3e1967ca0a7e

SHA1:

be9a473ef7c378923272c6b6bd8b0a172206b72a

Base64:

6ZmE