Unicode Finder

"窈" U+7A88(CJK UNIFIED IDEOGRAPH-7A88)

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

Programming

C
\u7A88
JavaScript
\u7A88
Java
\u7A88
Json
\u7A88
Python
\u7A88
Perl
\x{7A88}
PHP
\x{7A88}
Ruby
\u{7A88}
Rust
\u{7A88}
Go
\u7A88

Web

CSS
\007A88
HtmlDecimal
窈
HtmlHexadecimal
窈
Url
%E7%AA%88

Code

MD5
b9fba350c17c82177bd74514f6c1ee06
Sha1
75071899df84db1191d11d914841cc6e7a543546
Base64
56qI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7A88';
console.log(char);  // Output: 窈

Java:

char c = '\u7A88';
System.out.println(c);  // Output: 窈

JSON:

{"text": "\u7A88"}  // Value: 窈

Python:

char = '\u7A88'
print(char)  # Output: 窈

Perl:

my $char = "\x{7A88}";
print $char;  # Output: 窈

PHP:

$char = "\x{7A88}";
echo $char;  // Output: 窈

Ruby:

char = "\u{7A88}"
puts char  # Output: 窈

Rust:

let c = '\u{7A88}';
println!("{}", c);  // Output: 窈

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007A88";  /* Display: 窈 */
}

HTML Decimal:

<p>HTML decimal: &#31368;</p>  <!-- Display: 窈 -->

HTML Hexadecimal:

<p>HTML hex: &#x7A88;</p>  <!-- Display: 窈 -->

URL Encoding:

// 窈 URL encoding
https://unicodefinder.com/search.php?query=%E7%AA%88

Encodings

MD5:

b9fba350c17c82177bd74514f6c1ee06

SHA1:

75071899df84db1191d11d914841cc6e7a543546

Base64:

56qI