Unicode Finder

"組" U+7D44(CJK UNIFIED IDEOGRAPH-7D44)

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

Programming

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

Web

CSS
\007D44
HtmlDecimal
組
HtmlHexadecimal
組
Url
%E7%B5%84

Code

MD5
27db8a075744963a6efbee2caab1c848
Sha1
9c584c728f534e7b45685e49ed8d1ea3c65e1452
Base64
57WE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7D44';
console.log(char);  // Output: 組

Java:

char c = '\u7D44';
System.out.println(c);  // Output: 組

JSON:

{"text": "\u7D44"}  // Value: 組

Python:

char = '\u7D44'
print(char)  # Output: 組

Perl:

my $char = "\x{7D44}";
print $char;  # Output: 組

PHP:

$char = "\x{7D44}";
echo $char;  // Output: 組

Ruby:

char = "\u{7D44}"
puts char  # Output: 組

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32068;</p>  <!-- Display: 組 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D44;</p>  <!-- Display: 組 -->

URL Encoding:

// 組 URL encoding
https://unicodefinder.com/search.php?query=%E7%B5%84

Encodings

MD5:

27db8a075744963a6efbee2caab1c848

SHA1:

9c584c728f534e7b45685e49ed8d1ea3c65e1452

Base64:

57WE