Unicode Finder

"靷" U+9777(CJK UNIFIED IDEOGRAPH-9777)

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

Programming

C
\u9777
JavaScript
\u9777
Java
\u9777
Json
\u9777
Python
\u9777
Perl
\x{9777}
PHP
\x{9777}
Ruby
\u{9777}
Rust
\u{9777}
Go
\u9777

Web

CSS
\009777
HtmlDecimal
靷
HtmlHexadecimal
靷
Url
%E9%9D%B7

Code

MD5
2acdacf4413d08b3b2168f652c653022
Sha1
1313d4cc3888e78b1175d4c8452d84e533e6e89e
Base64
6Z23

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9777';
console.log(char);  // Output: 靷

Java:

char c = '\u9777';
System.out.println(c);  // Output: 靷

JSON:

{"text": "\u9777"}  // Value: 靷

Python:

char = '\u9777'
print(char)  # Output: 靷

Perl:

my $char = "\x{9777}";
print $char;  # Output: 靷

PHP:

$char = "\x{9777}";
echo $char;  // Output: 靷

Ruby:

char = "\u{9777}"
puts char  # Output: 靷

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009777";  /* Display: 靷 */
}

HTML Decimal:

<p>HTML decimal: &#38775;</p>  <!-- Display: 靷 -->

HTML Hexadecimal:

<p>HTML hex: &#x9777;</p>  <!-- Display: 靷 -->

URL Encoding:

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

Encodings

MD5:

2acdacf4413d08b3b2168f652c653022

SHA1:

1313d4cc3888e78b1175d4c8452d84e533e6e89e

Base64:

6Z23