Unicode Finder

"疄" U+7584(CJK UNIFIED IDEOGRAPH-7584)

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

Programming

C
\u7584
JavaScript
\u7584
Java
\u7584
Json
\u7584
Python
\u7584
Perl
\x{7584}
PHP
\x{7584}
Ruby
\u{7584}
Rust
\u{7584}
Go
\u7584

Web

CSS
\007584
HtmlDecimal
疄
HtmlHexadecimal
疄
Url
%E7%96%84

Code

MD5
adf678f01570ae22d1a7a7d9c4c5f24b
Sha1
4e629f781711f86702c32281d6847816c2deb4d7
Base64
55aE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7584';
console.log(char);  // Output: 疄

Java:

char c = '\u7584';
System.out.println(c);  // Output: 疄

JSON:

{"text": "\u7584"}  // Value: 疄

Python:

char = '\u7584'
print(char)  # Output: 疄

Perl:

my $char = "\x{7584}";
print $char;  # Output: 疄

PHP:

$char = "\x{7584}";
echo $char;  // Output: 疄

Ruby:

char = "\u{7584}"
puts char  # Output: 疄

Rust:

let c = '\u{7584}';
println!("{}", c);  // Output: 疄

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007584";  /* Display: 疄 */
}

HTML Decimal:

<p>HTML decimal: &#30084;</p>  <!-- Display: 疄 -->

HTML Hexadecimal:

<p>HTML hex: &#x7584;</p>  <!-- Display: 疄 -->

URL Encoding:

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

Encodings

MD5:

adf678f01570ae22d1a7a7d9c4c5f24b

SHA1:

4e629f781711f86702c32281d6847816c2deb4d7

Base64:

55aE