Unicode Finder

"痟" U+75DF(CJK UNIFIED IDEOGRAPH-75DF)

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

Programming

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

Web

CSS
\0075DF
HtmlDecimal
痟
HtmlHexadecimal
痟
Url
%E7%97%9F

Code

MD5
84826704e09837854c859cd8be4d8cd5
Sha1
05b1235e27fa15d16f3ecff2db99cdc539c4fa03
Base64
55ef

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u75DF';
console.log(char);  // Output: 痟

Java:

char c = '\u75DF';
System.out.println(c);  // Output: 痟

JSON:

{"text": "\u75DF"}  // Value: 痟

Python:

char = '\u75DF'
print(char)  # Output: 痟

Perl:

my $char = "\x{75DF}";
print $char;  # Output: 痟

PHP:

$char = "\x{75DF}";
echo $char;  // Output: 痟

Ruby:

char = "\u{75DF}"
puts char  # Output: 痟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30175;</p>  <!-- Display: 痟 -->

HTML Hexadecimal:

<p>HTML hex: &#x75DF;</p>  <!-- Display: 痟 -->

URL Encoding:

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

Encodings

MD5:

84826704e09837854c859cd8be4d8cd5

SHA1:

05b1235e27fa15d16f3ecff2db99cdc539c4fa03

Base64:

55ef