Unicode Finder

"痽" U+75FD(CJK UNIFIED IDEOGRAPH-75FD)

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

Programming

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

Web

CSS
\0075FD
HtmlDecimal
痽
HtmlHexadecimal
痽
Url
%E7%97%BD

Code

MD5
5d21625bf8af4f8320510434146fd2d2
Sha1
9fcd34a06c27115068db9c6b439f4cbbc85d8e6b
Base64
55e9

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u75FD';
console.log(char);  // Output: 痽

Java:

char c = '\u75FD';
System.out.println(c);  // Output: 痽

JSON:

{"text": "\u75FD"}  // Value: 痽

Python:

char = '\u75FD'
print(char)  # Output: 痽

Perl:

my $char = "\x{75FD}";
print $char;  # Output: 痽

PHP:

$char = "\x{75FD}";
echo $char;  // Output: 痽

Ruby:

char = "\u{75FD}"
puts char  # Output: 痽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30205;</p>  <!-- Display: 痽 -->

HTML Hexadecimal:

<p>HTML hex: &#x75FD;</p>  <!-- Display: 痽 -->

URL Encoding:

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

Encodings

MD5:

5d21625bf8af4f8320510434146fd2d2

SHA1:

9fcd34a06c27115068db9c6b439f4cbbc85d8e6b

Base64:

55e9