Unicode Finder

"痞" U+75DE(CJK UNIFIED IDEOGRAPH-75DE)

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

Programming

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

Web

CSS
\0075DE
HtmlDecimal
痞
HtmlHexadecimal
痞
Url
%E7%97%9E

Code

MD5
420041cf072de6a32e11b287b39d87bf
Sha1
706a8dc577cff6a1364eb439a90c679966bea878
Base64
55ee

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u75DE';
console.log(char);  // Output: 痞

Java:

char c = '\u75DE';
System.out.println(c);  // Output: 痞

JSON:

{"text": "\u75DE"}  // Value: 痞

Python:

char = '\u75DE'
print(char)  # Output: 痞

Perl:

my $char = "\x{75DE}";
print $char;  # Output: 痞

PHP:

$char = "\x{75DE}";
echo $char;  // Output: 痞

Ruby:

char = "\u{75DE}"
puts char  # Output: 痞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30174;</p>  <!-- Display: 痞 -->

HTML Hexadecimal:

<p>HTML hex: &#x75DE;</p>  <!-- Display: 痞 -->

URL Encoding:

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

Encodings

MD5:

420041cf072de6a32e11b287b39d87bf

SHA1:

706a8dc577cff6a1364eb439a90c679966bea878

Base64:

55ee