Unicode Finder

"陗" U+9657(CJK UNIFIED IDEOGRAPH-9657)

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

Programming

C
\u9657
JavaScript
\u9657
Java
\u9657
Json
\u9657
Python
\u9657
Perl
\x{9657}
PHP
\x{9657}
Ruby
\u{9657}
Rust
\u{9657}
Go
\u9657

Web

CSS
\009657
HtmlDecimal
陗
HtmlHexadecimal
陗
Url
%E9%99%97

Code

MD5
e84f08b32ce68c74577e5ec92c69e99f
Sha1
c6d7eca0d405842ff442a2efe84bf028193abd98
Base64
6ZmX

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9657';
console.log(char);  // Output: 陗

Java:

char c = '\u9657';
System.out.println(c);  // Output: 陗

JSON:

{"text": "\u9657"}  // Value: 陗

Python:

char = '\u9657'
print(char)  # Output: 陗

Perl:

my $char = "\x{9657}";
print $char;  # Output: 陗

PHP:

$char = "\x{9657}";
echo $char;  // Output: 陗

Ruby:

char = "\u{9657}"
puts char  # Output: 陗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009657";  /* Display: 陗 */
}

HTML Decimal:

<p>HTML decimal: &#38487;</p>  <!-- Display: 陗 -->

HTML Hexadecimal:

<p>HTML hex: &#x9657;</p>  <!-- Display: 陗 -->

URL Encoding:

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

Encodings

MD5:

e84f08b32ce68c74577e5ec92c69e99f

SHA1:

c6d7eca0d405842ff442a2efe84bf028193abd98

Base64:

6ZmX