Unicode Finder

"痜" U+75DC(CJK UNIFIED IDEOGRAPH-75DC)

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

Programming

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

Web

CSS
\0075DC
HtmlDecimal
痜
HtmlHexadecimal
痜
Url
%E7%97%9C

Code

MD5
9c9e16605bbac1a65eea51d55f967a80
Sha1
daebfcd8727df4d892411a57c54b16c1ce86881c
Base64
55ec

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u75DC';
console.log(char);  // Output: 痜

Java:

char c = '\u75DC';
System.out.println(c);  // Output: 痜

JSON:

{"text": "\u75DC"}  // Value: 痜

Python:

char = '\u75DC'
print(char)  # Output: 痜

Perl:

my $char = "\x{75DC}";
print $char;  # Output: 痜

PHP:

$char = "\x{75DC}";
echo $char;  // Output: 痜

Ruby:

char = "\u{75DC}"
puts char  # Output: 痜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30172;</p>  <!-- Display: 痜 -->

HTML Hexadecimal:

<p>HTML hex: &#x75DC;</p>  <!-- Display: 痜 -->

URL Encoding:

// 痜 URL encoding
https://unicodefinder.com/search.php?query=%E7%97%9C

Encodings

MD5:

9c9e16605bbac1a65eea51d55f967a80

SHA1:

daebfcd8727df4d892411a57c54b16c1ce86881c

Base64:

55ec