Unicode Finder

"陱" U+9671(CJK UNIFIED IDEOGRAPH-9671)

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

Programming

C
\u9671
JavaScript
\u9671
Java
\u9671
Json
\u9671
Python
\u9671
Perl
\x{9671}
PHP
\x{9671}
Ruby
\u{9671}
Rust
\u{9671}
Go
\u9671

Web

CSS
\009671
HtmlDecimal
陱
HtmlHexadecimal
陱
Url
%E9%99%B1

Code

MD5
0ce1786927f6b765dd2159834a86ca34
Sha1
40501ec315b32fced61f246de9c336d0c6b57547
Base64
6Zmx

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9671';
console.log(char);  // Output: 陱

Java:

char c = '\u9671';
System.out.println(c);  // Output: 陱

JSON:

{"text": "\u9671"}  // Value: 陱

Python:

char = '\u9671'
print(char)  # Output: 陱

Perl:

my $char = "\x{9671}";
print $char;  # Output: 陱

PHP:

$char = "\x{9671}";
echo $char;  // Output: 陱

Ruby:

char = "\u{9671}"
puts char  # Output: 陱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009671";  /* Display: 陱 */
}

HTML Decimal:

<p>HTML decimal: &#38513;</p>  <!-- Display: 陱 -->

HTML Hexadecimal:

<p>HTML hex: &#x9671;</p>  <!-- Display: 陱 -->

URL Encoding:

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

Encodings

MD5:

0ce1786927f6b765dd2159834a86ca34

SHA1:

40501ec315b32fced61f246de9c336d0c6b57547

Base64:

6Zmx