Unicode Finder

"疑" U+7591(CJK UNIFIED IDEOGRAPH-7591)

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

Programming

C
\u7591
JavaScript
\u7591
Java
\u7591
Json
\u7591
Python
\u7591
Perl
\x{7591}
PHP
\x{7591}
Ruby
\u{7591}
Rust
\u{7591}
Go
\u7591

Web

CSS
\007591
HtmlDecimal
疑
HtmlHexadecimal
疑
Url
%E7%96%91

Code

MD5
67713d8448ae6183fbf87144aef0ce39
Sha1
64e78c774c1d248eb8903f0c10750b1ebaa159e0
Base64
55aR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7591';
console.log(char);  // Output: 疑

Java:

char c = '\u7591';
System.out.println(c);  // Output: 疑

JSON:

{"text": "\u7591"}  // Value: 疑

Python:

char = '\u7591'
print(char)  # Output: 疑

Perl:

my $char = "\x{7591}";
print $char;  # Output: 疑

PHP:

$char = "\x{7591}";
echo $char;  // Output: 疑

Ruby:

char = "\u{7591}"
puts char  # Output: 疑

Rust:

let c = '\u{7591}';
println!("{}", c);  // Output: 疑

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007591";  /* Display: 疑 */
}

HTML Decimal:

<p>HTML decimal: &#30097;</p>  <!-- Display: 疑 -->

HTML Hexadecimal:

<p>HTML hex: &#x7591;</p>  <!-- Display: 疑 -->

URL Encoding:

// 疑 URL encoding
https://unicodefinder.com/search.php?query=%E7%96%91

Encodings

MD5:

67713d8448ae6183fbf87144aef0ce39

SHA1:

64e78c774c1d248eb8903f0c10750b1ebaa159e0

Base64:

55aR