Unicode Finder

"窋" U+7A8B(CJK UNIFIED IDEOGRAPH-7A8B)

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

Programming

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

Web

CSS
\007A8B
HtmlDecimal
窋
HtmlHexadecimal
窋
Url
%E7%AA%8B

Code

MD5
3c5b5e4912d1af203a41198c0c23a96c
Sha1
fb0efe6a34cd2b85b12b784d19629fb2914b3794
Base64
56qL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7A8B';
console.log(char);  // Output: 窋

Java:

char c = '\u7A8B';
System.out.println(c);  // Output: 窋

JSON:

{"text": "\u7A8B"}  // Value: 窋

Python:

char = '\u7A8B'
print(char)  # Output: 窋

Perl:

my $char = "\x{7A8B}";
print $char;  # Output: 窋

PHP:

$char = "\x{7A8B}";
echo $char;  // Output: 窋

Ruby:

char = "\u{7A8B}"
puts char  # Output: 窋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31371;</p>  <!-- Display: 窋 -->

HTML Hexadecimal:

<p>HTML hex: &#x7A8B;</p>  <!-- Display: 窋 -->

URL Encoding:

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

Encodings

MD5:

3c5b5e4912d1af203a41198c0c23a96c

SHA1:

fb0efe6a34cd2b85b12b784d19629fb2914b3794

Base64:

56qL