Unicode Finder

"靵" U+9775(CJK UNIFIED IDEOGRAPH-9775)

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

Programming

C
\u9775
JavaScript
\u9775
Java
\u9775
Json
\u9775
Python
\u9775
Perl
\x{9775}
PHP
\x{9775}
Ruby
\u{9775}
Rust
\u{9775}
Go
\u9775

Web

CSS
\009775
HtmlDecimal
靵
HtmlHexadecimal
靵
Url
%E9%9D%B5

Code

MD5
dc0ccb70e4c5c157c3c594124be7f2ba
Sha1
02ce2a0714536a1f8ce56a75f2fbe4b369dffaa0
Base64
6Z21

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9775';
console.log(char);  // Output: 靵

Java:

char c = '\u9775';
System.out.println(c);  // Output: 靵

JSON:

{"text": "\u9775"}  // Value: 靵

Python:

char = '\u9775'
print(char)  # Output: 靵

Perl:

my $char = "\x{9775}";
print $char;  # Output: 靵

PHP:

$char = "\x{9775}";
echo $char;  // Output: 靵

Ruby:

char = "\u{9775}"
puts char  # Output: 靵

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009775";  /* Display: 靵 */
}

HTML Decimal:

<p>HTML decimal: &#38773;</p>  <!-- Display: 靵 -->

HTML Hexadecimal:

<p>HTML hex: &#x9775;</p>  <!-- Display: 靵 -->

URL Encoding:

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

Encodings

MD5:

dc0ccb70e4c5c157c3c594124be7f2ba

SHA1:

02ce2a0714536a1f8ce56a75f2fbe4b369dffaa0

Base64:

6Z21