Unicode Finder

"疜" U+759C(CJK UNIFIED IDEOGRAPH-759C)

U+759C
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-759C

Programming

C
\u759C
JavaScript
\u759C
Java
\u759C
Json
\u759C
Python
\u759C
Perl
\x{759C}
PHP
\x{759C}
Ruby
\u{759C}
Rust
\u{759C}
Go
\u759C

Web

CSS
\00759C
HtmlDecimal
疜
HtmlHexadecimal
疜
Url
%E7%96%9C

Code

MD5
253555c5a3903860f947da65d50e7ec1
Sha1
d577e9573924a401a5a3e3c76b7e53b3766213af
Base64
55ac

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u759C';
console.log(char);  // Output: 疜

Java:

char c = '\u759C';
System.out.println(c);  // Output: 疜

JSON:

{"text": "\u759C"}  // Value: 疜

Python:

char = '\u759C'
print(char)  # Output: 疜

Perl:

my $char = "\x{759C}";
print $char;  # Output: 疜

PHP:

$char = "\x{759C}";
echo $char;  // Output: 疜

Ruby:

char = "\u{759C}"
puts char  # Output: 疜

Rust:

let c = '\u{759C}';
println!("{}", c);  // Output: 疜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00759C";  /* Display: 疜 */
}

HTML Decimal:

<p>HTML decimal: &#30108;</p>  <!-- Display: 疜 -->

HTML Hexadecimal:

<p>HTML hex: &#x759C;</p>  <!-- Display: 疜 -->

URL Encoding:

// 疜 URL encoding
https://unicodefinder.com/search.php?query=%E7%96%9C

Encodings

MD5:

253555c5a3903860f947da65d50e7ec1

SHA1:

d577e9573924a401a5a3e3c76b7e53b3766213af

Base64:

55ac