Unicode Finder

"疈" U+7588(CJK UNIFIED IDEOGRAPH-7588)

U+7588
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7588

Programming

C
\u7588
JavaScript
\u7588
Java
\u7588
Json
\u7588
Python
\u7588
Perl
\x{7588}
PHP
\x{7588}
Ruby
\u{7588}
Rust
\u{7588}
Go
\u7588

Web

CSS
\007588
HtmlDecimal
疈
HtmlHexadecimal
疈
Url
%E7%96%88

Code

MD5
b7be006ff324e570985a74b93bf30234
Sha1
3745f0d31767f4bf5cae48b2e41ed2fa9047401e
Base64
55aI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7588';
console.log(char);  // Output: 疈

Java:

char c = '\u7588';
System.out.println(c);  // Output: 疈

JSON:

{"text": "\u7588"}  // Value: 疈

Python:

char = '\u7588'
print(char)  # Output: 疈

Perl:

my $char = "\x{7588}";
print $char;  # Output: 疈

PHP:

$char = "\x{7588}";
echo $char;  // Output: 疈

Ruby:

char = "\u{7588}"
puts char  # Output: 疈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007588";  /* Display: 疈 */
}

HTML Decimal:

<p>HTML decimal: &#30088;</p>  <!-- Display: 疈 -->

HTML Hexadecimal:

<p>HTML hex: &#x7588;</p>  <!-- Display: 疈 -->

URL Encoding:

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

Encodings

MD5:

b7be006ff324e570985a74b93bf30234

SHA1:

3745f0d31767f4bf5cae48b2e41ed2fa9047401e

Base64:

55aI