Unicode Finder

"窳" U+7AB3(CJK UNIFIED IDEOGRAPH-7AB3)

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

Programming

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

Web

CSS
\007AB3
HtmlDecimal
窳
HtmlHexadecimal
窳
Url
%E7%AA%B3

Code

MD5
5f5a93d13657d555ea1f37d834cfb776
Sha1
97e41e980de8c07e8063a9e393cf6705819c2cc7
Base64
56qz

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7AB3';
console.log(char);  // Output: 窳

Java:

char c = '\u7AB3';
System.out.println(c);  // Output: 窳

JSON:

{"text": "\u7AB3"}  // Value: 窳

Python:

char = '\u7AB3'
print(char)  # Output: 窳

Perl:

my $char = "\x{7AB3}";
print $char;  # Output: 窳

PHP:

$char = "\x{7AB3}";
echo $char;  // Output: 窳

Ruby:

char = "\u{7AB3}"
puts char  # Output: 窳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31411;</p>  <!-- Display: 窳 -->

HTML Hexadecimal:

<p>HTML hex: &#x7AB3;</p>  <!-- Display: 窳 -->

URL Encoding:

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

Encodings

MD5:

5f5a93d13657d555ea1f37d834cfb776

SHA1:

97e41e980de8c07e8063a9e393cf6705819c2cc7

Base64:

56qz