Unicode Finder

"痬" U+75EC(CJK UNIFIED IDEOGRAPH-75EC)

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

Programming

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

Web

CSS
\0075EC
HtmlDecimal
痬
HtmlHexadecimal
痬
Url
%E7%97%AC

Code

MD5
a717669b8f1e54a577ce1341ebfe9eda
Sha1
b93c361d2e96ba7d424ecc5c06a2eeab8035b804
Base64
55es

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u75EC';
console.log(char);  // Output: 痬

Java:

char c = '\u75EC';
System.out.println(c);  // Output: 痬

JSON:

{"text": "\u75EC"}  // Value: 痬

Python:

char = '\u75EC'
print(char)  # Output: 痬

Perl:

my $char = "\x{75EC}";
print $char;  # Output: 痬

PHP:

$char = "\x{75EC}";
echo $char;  // Output: 痬

Ruby:

char = "\u{75EC}"
puts char  # Output: 痬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30188;</p>  <!-- Display: 痬 -->

HTML Hexadecimal:

<p>HTML hex: &#x75EC;</p>  <!-- Display: 痬 -->

URL Encoding:

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

Encodings

MD5:

a717669b8f1e54a577ce1341ebfe9eda

SHA1:

b93c361d2e96ba7d424ecc5c06a2eeab8035b804

Base64:

55es