Unicode Finder

"窏" U+7A8F(CJK UNIFIED IDEOGRAPH-7A8F)

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

Programming

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

Web

CSS
\007A8F
HtmlDecimal
窏
HtmlHexadecimal
窏
Url
%E7%AA%8F

Code

MD5
5a17b76d852e453e777a63122ba21362
Sha1
7d37e0e37c3679ad9235ca9d2b342618dffd2271
Base64
56qP

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7A8F';
console.log(char);  // Output: 窏

Java:

char c = '\u7A8F';
System.out.println(c);  // Output: 窏

JSON:

{"text": "\u7A8F"}  // Value: 窏

Python:

char = '\u7A8F'
print(char)  # Output: 窏

Perl:

my $char = "\x{7A8F}";
print $char;  # Output: 窏

PHP:

$char = "\x{7A8F}";
echo $char;  // Output: 窏

Ruby:

char = "\u{7A8F}"
puts char  # Output: 窏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31375;</p>  <!-- Display: 窏 -->

HTML Hexadecimal:

<p>HTML hex: &#x7A8F;</p>  <!-- Display: 窏 -->

URL Encoding:

// 窏 URL encoding
https://unicodefinder.com/search.php?query=%E7%AA%8F

Encodings

MD5:

5a17b76d852e453e777a63122ba21362

SHA1:

7d37e0e37c3679ad9235ca9d2b342618dffd2271

Base64:

56qP