Unicode Finder

"痾" U+75FE(CJK UNIFIED IDEOGRAPH-75FE)

U+75FE
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-75FE

Programming

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

Web

CSS
\0075FE
HtmlDecimal
痾
HtmlHexadecimal
痾
Url
%E7%97%BE

Code

MD5
5a7164b66939ca5f4d961b90b66c4da5
Sha1
47e5d398d438254dd335b9561de765cbd7ee2a57
Base64
55e+

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u75FE';
console.log(char);  // Output: 痾

Java:

char c = '\u75FE';
System.out.println(c);  // Output: 痾

JSON:

{"text": "\u75FE"}  // Value: 痾

Python:

char = '\u75FE'
print(char)  # Output: 痾

Perl:

my $char = "\x{75FE}";
print $char;  # Output: 痾

PHP:

$char = "\x{75FE}";
echo $char;  // Output: 痾

Ruby:

char = "\u{75FE}"
puts char  # Output: 痾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30206;</p>  <!-- Display: 痾 -->

HTML Hexadecimal:

<p>HTML hex: &#x75FE;</p>  <!-- Display: 痾 -->

URL Encoding:

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

Encodings

MD5:

5a7164b66939ca5f4d961b90b66c4da5

SHA1:

47e5d398d438254dd335b9561de765cbd7ee2a57

Base64:

55e+