Unicode Finder

"靡" U+9761(CJK UNIFIED IDEOGRAPH-9761)

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

Programming

C
\u9761
JavaScript
\u9761
Java
\u9761
Json
\u9761
Python
\u9761
Perl
\x{9761}
PHP
\x{9761}
Ruby
\u{9761}
Rust
\u{9761}
Go
\u9761

Web

CSS
\009761
HtmlDecimal
靡
HtmlHexadecimal
靡
Url
%E9%9D%A1

Code

MD5
c3fc04195606939cb72a641a5d64c646
Sha1
ae7aae25be0299054c1fd2b3038750253575b05d
Base64
6Z2h

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9761';
console.log(char);  // Output: 靡

Java:

char c = '\u9761';
System.out.println(c);  // Output: 靡

JSON:

{"text": "\u9761"}  // Value: 靡

Python:

char = '\u9761'
print(char)  # Output: 靡

Perl:

my $char = "\x{9761}";
print $char;  # Output: 靡

PHP:

$char = "\x{9761}";
echo $char;  // Output: 靡

Ruby:

char = "\u{9761}"
puts char  # Output: 靡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009761";  /* Display: 靡 */
}

HTML Decimal:

<p>HTML decimal: &#38753;</p>  <!-- Display: 靡 -->

HTML Hexadecimal:

<p>HTML hex: &#x9761;</p>  <!-- Display: 靡 -->

URL Encoding:

// 靡 URL encoding
https://unicodefinder.com/search.php?query=%E9%9D%A1

Encodings

MD5:

c3fc04195606939cb72a641a5d64c646

SHA1:

ae7aae25be0299054c1fd2b3038750253575b05d

Base64:

6Z2h