Unicode Finder

"陘" U+9658(CJK UNIFIED IDEOGRAPH-9658)

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

Programming

C
\u9658
JavaScript
\u9658
Java
\u9658
Json
\u9658
Python
\u9658
Perl
\x{9658}
PHP
\x{9658}
Ruby
\u{9658}
Rust
\u{9658}
Go
\u9658

Web

CSS
\009658
HtmlDecimal
陘
HtmlHexadecimal
陘
Url
%E9%99%98

Code

MD5
dac5aef94c74fb397cf6a6ce587decbf
Sha1
6040f12bb8deee9046649c99c5c9368d67518a28
Base64
6ZmY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9658';
console.log(char);  // Output: 陘

Java:

char c = '\u9658';
System.out.println(c);  // Output: 陘

JSON:

{"text": "\u9658"}  // Value: 陘

Python:

char = '\u9658'
print(char)  # Output: 陘

Perl:

my $char = "\x{9658}";
print $char;  # Output: 陘

PHP:

$char = "\x{9658}";
echo $char;  // Output: 陘

Ruby:

char = "\u{9658}"
puts char  # Output: 陘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009658";  /* Display: 陘 */
}

HTML Decimal:

<p>HTML decimal: &#38488;</p>  <!-- Display: 陘 -->

HTML Hexadecimal:

<p>HTML hex: &#x9658;</p>  <!-- Display: 陘 -->

URL Encoding:

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

Encodings

MD5:

dac5aef94c74fb397cf6a6ce587decbf

SHA1:

6040f12bb8deee9046649c99c5c9368d67518a28

Base64:

6ZmY