Unicode Finder

"窰" U+7AB0(CJK UNIFIED IDEOGRAPH-7AB0)

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

Programming

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

Web

CSS
\007AB0
HtmlDecimal
窰
HtmlHexadecimal
窰
Url
%E7%AA%B0

Code

MD5
fd32f8b24cafe22d2c74c7ac2cac70ad
Sha1
4d6e2877bcfb52352854d6295d57d4e0841fe49d
Base64
56qw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7AB0';
console.log(char);  // Output: 窰

Java:

char c = '\u7AB0';
System.out.println(c);  // Output: 窰

JSON:

{"text": "\u7AB0"}  // Value: 窰

Python:

char = '\u7AB0'
print(char)  # Output: 窰

Perl:

my $char = "\x{7AB0}";
print $char;  # Output: 窰

PHP:

$char = "\x{7AB0}";
echo $char;  // Output: 窰

Ruby:

char = "\u{7AB0}"
puts char  # Output: 窰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31408;</p>  <!-- Display: 窰 -->

HTML Hexadecimal:

<p>HTML hex: &#x7AB0;</p>  <!-- Display: 窰 -->

URL Encoding:

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

Encodings

MD5:

fd32f8b24cafe22d2c74c7ac2cac70ad

SHA1:

4d6e2877bcfb52352854d6295d57d4e0841fe49d

Base64:

56qw