Unicode Finder

"静" U+9759(CJK UNIFIED IDEOGRAPH-9759)

U+9759
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-9759

Programming

C
\u9759
JavaScript
\u9759
Java
\u9759
Json
\u9759
Python
\u9759
Perl
\x{9759}
PHP
\x{9759}
Ruby
\u{9759}
Rust
\u{9759}
Go
\u9759

Web

CSS
\009759
HtmlDecimal
静
HtmlHexadecimal
静
Url
%E9%9D%99

Code

MD5
861a7657ed4d03b43abe6bc5c6f2bd2d
Sha1
f75fe10cbcea4555f91ba50b4efe0a66d3028496
Base64
6Z2Z

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9759';
console.log(char);  // Output: 静

Java:

char c = '\u9759';
System.out.println(c);  // Output: 静

JSON:

{"text": "\u9759"}  // Value: 静

Python:

char = '\u9759'
print(char)  # Output: 静

Perl:

my $char = "\x{9759}";
print $char;  # Output: 静

PHP:

$char = "\x{9759}";
echo $char;  // Output: 静

Ruby:

char = "\u{9759}"
puts char  # Output: 静

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009759";  /* Display: 静 */
}

HTML Decimal:

<p>HTML decimal: &#38745;</p>  <!-- Display: 静 -->

HTML Hexadecimal:

<p>HTML hex: &#x9759;</p>  <!-- Display: 静 -->

URL Encoding:

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

Encodings

MD5:

861a7657ed4d03b43abe6bc5c6f2bd2d

SHA1:

f75fe10cbcea4555f91ba50b4efe0a66d3028496

Base64:

6Z2Z