Unicode Finder

"痐" U+75D0(CJK UNIFIED IDEOGRAPH-75D0)

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

Programming

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

Web

CSS
\0075D0
HtmlDecimal
痐
HtmlHexadecimal
痐
Url
%E7%97%90

Code

MD5
30f59629bbf281ec7547b7bba9849c9f
Sha1
d0221704db7a4650e6d1aa25903816f52c75c7ad
Base64
55eQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u75D0';
console.log(char);  // Output: 痐

Java:

char c = '\u75D0';
System.out.println(c);  // Output: 痐

JSON:

{"text": "\u75D0"}  // Value: 痐

Python:

char = '\u75D0'
print(char)  # Output: 痐

Perl:

my $char = "\x{75D0}";
print $char;  # Output: 痐

PHP:

$char = "\x{75D0}";
echo $char;  // Output: 痐

Ruby:

char = "\u{75D0}"
puts char  # Output: 痐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30160;</p>  <!-- Display: 痐 -->

HTML Hexadecimal:

<p>HTML hex: &#x75D0;</p>  <!-- Display: 痐 -->

URL Encoding:

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

Encodings

MD5:

30f59629bbf281ec7547b7bba9849c9f

SHA1:

d0221704db7a4650e6d1aa25903816f52c75c7ad

Base64:

55eQ