Unicode Finder

"痿" U+75FF(CJK UNIFIED IDEOGRAPH-75FF)

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

Programming

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

Web

CSS
\0075FF
HtmlDecimal
痿
HtmlHexadecimal
痿
Url
%E7%97%BF

Code

MD5
c3b8baa0e49278f86070e8e84b2797bb
Sha1
3414c0a1a613885bbcb229879cbee35d6d3f113e
Base64
55e/

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u75FF';
console.log(char);  // Output: 痿

Java:

char c = '\u75FF';
System.out.println(c);  // Output: 痿

JSON:

{"text": "\u75FF"}  // Value: 痿

Python:

char = '\u75FF'
print(char)  # Output: 痿

Perl:

my $char = "\x{75FF}";
print $char;  # Output: 痿

PHP:

$char = "\x{75FF}";
echo $char;  // Output: 痿

Ruby:

char = "\u{75FF}"
puts char  # Output: 痿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30207;</p>  <!-- Display: 痿 -->

HTML Hexadecimal:

<p>HTML hex: &#x75FF;</p>  <!-- Display: 痿 -->

URL Encoding:

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

Encodings

MD5:

c3b8baa0e49278f86070e8e84b2797bb

SHA1:

3414c0a1a613885bbcb229879cbee35d6d3f113e

Base64:

55e/