Unicode Finder

"痝" U+75DD(CJK UNIFIED IDEOGRAPH-75DD)

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

Programming

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

Web

CSS
\0075DD
HtmlDecimal
痝
HtmlHexadecimal
痝
Url
%E7%97%9D

Code

MD5
a0eeedf7b3894b36450c1fa034589f95
Sha1
b9b5dee71bb6ae764dd49c4ccd8eb560bc5e2c6d
Base64
55ed

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u75DD';
console.log(char);  // Output: 痝

Java:

char c = '\u75DD';
System.out.println(c);  // Output: 痝

JSON:

{"text": "\u75DD"}  // Value: 痝

Python:

char = '\u75DD'
print(char)  # Output: 痝

Perl:

my $char = "\x{75DD}";
print $char;  # Output: 痝

PHP:

$char = "\x{75DD}";
echo $char;  // Output: 痝

Ruby:

char = "\u{75DD}"
puts char  # Output: 痝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30173;</p>  <!-- Display: 痝 -->

HTML Hexadecimal:

<p>HTML hex: &#x75DD;</p>  <!-- Display: 痝 -->

URL Encoding:

// 痝 URL encoding
https://unicodefinder.com/search.php?query=%E7%97%9D

Encodings

MD5:

a0eeedf7b3894b36450c1fa034589f95

SHA1:

b9b5dee71bb6ae764dd49c4ccd8eb560bc5e2c6d

Base64:

55ed