Unicode Finder

"症" U+75C7(CJK UNIFIED IDEOGRAPH-75C7)

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

Programming

C
\u75C7
JavaScript
\u75C7
Java
\u75C7
Json
\u75C7
Python
\u75C7
Perl
\x{75C7}
PHP
\x{75C7}
Ruby
\u{75C7}
Rust
\u{75C7}
Go
\u75C7

Web

CSS
\0075C7
HtmlDecimal
症
HtmlHexadecimal
症
Url
%E7%97%87

Code

MD5
ef221c8959b7cda0e033226ebe70727d
Sha1
3048f1b030e7567c1b860d288b8d05f4771414ac
Base64
55eH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u75C7';
console.log(char);  // Output: 症

Java:

char c = '\u75C7';
System.out.println(c);  // Output: 症

JSON:

{"text": "\u75C7"}  // Value: 症

Python:

char = '\u75C7'
print(char)  # Output: 症

Perl:

my $char = "\x{75C7}";
print $char;  # Output: 症

PHP:

$char = "\x{75C7}";
echo $char;  // Output: 症

Ruby:

char = "\u{75C7}"
puts char  # Output: 症

Rust:

let c = '\u{75C7}';
println!("{}", c);  // Output: 症

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0075C7";  /* Display: 症 */
}

HTML Decimal:

<p>HTML decimal: &#30151;</p>  <!-- Display: 症 -->

HTML Hexadecimal:

<p>HTML hex: &#x75C7;</p>  <!-- Display: 症 -->

URL Encoding:

// 症 URL encoding
https://unicodefinder.com/search.php?query=%E7%97%87

Encodings

MD5:

ef221c8959b7cda0e033226ebe70727d

SHA1:

3048f1b030e7567c1b860d288b8d05f4771414ac

Base64:

55eH