Unicode Finder

"陈" U+9648(CJK UNIFIED IDEOGRAPH-9648)

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

Programming

C
\u9648
JavaScript
\u9648
Java
\u9648
Json
\u9648
Python
\u9648
Perl
\x{9648}
PHP
\x{9648}
Ruby
\u{9648}
Rust
\u{9648}
Go
\u9648

Web

CSS
\009648
HtmlDecimal
陈
HtmlHexadecimal
陈
Url
%E9%99%88

Code

MD5
12686c171481a3e59e4f2affa9af5b7c
Sha1
6a5d848e0d53d9e021e693b8b1c48ec552105691
Base64
6ZmI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9648';
console.log(char);  // Output: 陈

Java:

char c = '\u9648';
System.out.println(c);  // Output: 陈

JSON:

{"text": "\u9648"}  // Value: 陈

Python:

char = '\u9648'
print(char)  # Output: 陈

Perl:

my $char = "\x{9648}";
print $char;  # Output: 陈

PHP:

$char = "\x{9648}";
echo $char;  // Output: 陈

Ruby:

char = "\u{9648}"
puts char  # Output: 陈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009648";  /* Display: 陈 */
}

HTML Decimal:

<p>HTML decimal: &#38472;</p>  <!-- Display: 陈 -->

HTML Hexadecimal:

<p>HTML hex: &#x9648;</p>  <!-- Display: 陈 -->

URL Encoding:

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

Encodings

MD5:

12686c171481a3e59e4f2affa9af5b7c

SHA1:

6a5d848e0d53d9e021e693b8b1c48ec552105691

Base64:

6ZmI