Unicode Finder

"痸" U+75F8(CJK UNIFIED IDEOGRAPH-75F8)

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

Programming

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

Web

CSS
\0075F8
HtmlDecimal
痸
HtmlHexadecimal
痸
Url
%E7%97%B8

Code

MD5
dec578e4e65eb7548deaf9cd17724f01
Sha1
30a8cac66cca676ebe3e96097392682e9ffd0fc2
Base64
55e4

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u75F8';
console.log(char);  // Output: 痸

Java:

char c = '\u75F8';
System.out.println(c);  // Output: 痸

JSON:

{"text": "\u75F8"}  // Value: 痸

Python:

char = '\u75F8'
print(char)  # Output: 痸

Perl:

my $char = "\x{75F8}";
print $char;  # Output: 痸

PHP:

$char = "\x{75F8}";
echo $char;  // Output: 痸

Ruby:

char = "\u{75F8}"
puts char  # Output: 痸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30200;</p>  <!-- Display: 痸 -->

HTML Hexadecimal:

<p>HTML hex: &#x75F8;</p>  <!-- Display: 痸 -->

URL Encoding:

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

Encodings

MD5:

dec578e4e65eb7548deaf9cd17724f01

SHA1:

30a8cac66cca676ebe3e96097392682e9ffd0fc2

Base64:

55e4