Unicode Finder

"痭" U+75ED(CJK UNIFIED IDEOGRAPH-75ED)

U+75ED
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-75ED

Programming

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

Web

CSS
\0075ED
HtmlDecimal
痭
HtmlHexadecimal
痭
Url
%E7%97%AD

Code

MD5
9506cdba6935af9c1300005a22e782e5
Sha1
93b7483745e73d903425762745f701438e965d20
Base64
55et

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u75ED';
console.log(char);  // Output: 痭

Java:

char c = '\u75ED';
System.out.println(c);  // Output: 痭

JSON:

{"text": "\u75ED"}  // Value: 痭

Python:

char = '\u75ED'
print(char)  # Output: 痭

Perl:

my $char = "\x{75ED}";
print $char;  # Output: 痭

PHP:

$char = "\x{75ED}";
echo $char;  // Output: 痭

Ruby:

char = "\u{75ED}"
puts char  # Output: 痭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30189;</p>  <!-- Display: 痭 -->

HTML Hexadecimal:

<p>HTML hex: &#x75ED;</p>  <!-- Display: 痭 -->

URL Encoding:

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

Encodings

MD5:

9506cdba6935af9c1300005a22e782e5

SHA1:

93b7483745e73d903425762745f701438e965d20

Base64:

55et