Unicode Finder

"靸" U+9778(CJK UNIFIED IDEOGRAPH-9778)

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

Programming

C
\u9778
JavaScript
\u9778
Java
\u9778
Json
\u9778
Python
\u9778
Perl
\x{9778}
PHP
\x{9778}
Ruby
\u{9778}
Rust
\u{9778}
Go
\u9778

Web

CSS
\009778
HtmlDecimal
靸
HtmlHexadecimal
靸
Url
%E9%9D%B8

Code

MD5
9fdfd26ba8f65698135102434d410dae
Sha1
858eee4859b614c632de73d289d6dc63a3880b32
Base64
6Z24

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9778';
console.log(char);  // Output: 靸

Java:

char c = '\u9778';
System.out.println(c);  // Output: 靸

JSON:

{"text": "\u9778"}  // Value: 靸

Python:

char = '\u9778'
print(char)  # Output: 靸

Perl:

my $char = "\x{9778}";
print $char;  # Output: 靸

PHP:

$char = "\x{9778}";
echo $char;  // Output: 靸

Ruby:

char = "\u{9778}"
puts char  # Output: 靸

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009778";  /* Display: 靸 */
}

HTML Decimal:

<p>HTML decimal: &#38776;</p>  <!-- Display: 靸 -->

HTML Hexadecimal:

<p>HTML hex: &#x9778;</p>  <!-- Display: 靸 -->

URL Encoding:

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

Encodings

MD5:

9fdfd26ba8f65698135102434d410dae

SHA1:

858eee4859b614c632de73d289d6dc63a3880b32

Base64:

6Z24