Unicode Finder

"窼" U+7ABC(CJK UNIFIED IDEOGRAPH-7ABC)

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

Programming

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

Web

CSS
\007ABC
HtmlDecimal
窼
HtmlHexadecimal
窼
Url
%E7%AA%BC

Code

MD5
e70593820c1d228977c0019442d9adfd
Sha1
1059a5813a5029601e928fc6a065efc36d9dcf38
Base64
56q8

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7ABC';
console.log(char);  // Output: 窼

Java:

char c = '\u7ABC';
System.out.println(c);  // Output: 窼

JSON:

{"text": "\u7ABC"}  // Value: 窼

Python:

char = '\u7ABC'
print(char)  # Output: 窼

Perl:

my $char = "\x{7ABC}";
print $char;  # Output: 窼

PHP:

$char = "\x{7ABC}";
echo $char;  // Output: 窼

Ruby:

char = "\u{7ABC}"
puts char  # Output: 窼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31420;</p>  <!-- Display: 窼 -->

HTML Hexadecimal:

<p>HTML hex: &#x7ABC;</p>  <!-- Display: 窼 -->

URL Encoding:

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

Encodings

MD5:

e70593820c1d228977c0019442d9adfd

SHA1:

1059a5813a5029601e928fc6a065efc36d9dcf38

Base64:

56q8