Unicode Finder

"疒" U+7592(CJK UNIFIED IDEOGRAPH-7592)

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

Programming

C
\u7592
JavaScript
\u7592
Java
\u7592
Json
\u7592
Python
\u7592
Perl
\x{7592}
PHP
\x{7592}
Ruby
\u{7592}
Rust
\u{7592}
Go
\u7592

Web

CSS
\007592
HtmlDecimal
疒
HtmlHexadecimal
疒
Url
%E7%96%92

Code

MD5
f70f1f9c8d00348c1c7107a24710ccfb
Sha1
451b1676f299763f69a973e7cd5c4e179ed9ef0c
Base64
55aS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7592';
console.log(char);  // Output: 疒

Java:

char c = '\u7592';
System.out.println(c);  // Output: 疒

JSON:

{"text": "\u7592"}  // Value: 疒

Python:

char = '\u7592'
print(char)  # Output: 疒

Perl:

my $char = "\x{7592}";
print $char;  # Output: 疒

PHP:

$char = "\x{7592}";
echo $char;  // Output: 疒

Ruby:

char = "\u{7592}"
puts char  # Output: 疒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007592";  /* Display: 疒 */
}

HTML Decimal:

<p>HTML decimal: &#30098;</p>  <!-- Display: 疒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7592;</p>  <!-- Display: 疒 -->

URL Encoding:

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

Encodings

MD5:

f70f1f9c8d00348c1c7107a24710ccfb

SHA1:

451b1676f299763f69a973e7cd5c4e179ed9ef0c

Base64:

55aS