Unicode Finder

"疐" U+7590(CJK UNIFIED IDEOGRAPH-7590)

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

Programming

C
\u7590
JavaScript
\u7590
Java
\u7590
Json
\u7590
Python
\u7590
Perl
\x{7590}
PHP
\x{7590}
Ruby
\u{7590}
Rust
\u{7590}
Go
\u7590

Web

CSS
\007590
HtmlDecimal
疐
HtmlHexadecimal
疐
Url
%E7%96%90

Code

MD5
ba4a2eaf9a38be13c7fa30481d6f4d80
Sha1
fdde90e288beffe0679aa403541bba5eb1da6a36
Base64
55aQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7590';
console.log(char);  // Output: 疐

Java:

char c = '\u7590';
System.out.println(c);  // Output: 疐

JSON:

{"text": "\u7590"}  // Value: 疐

Python:

char = '\u7590'
print(char)  # Output: 疐

Perl:

my $char = "\x{7590}";
print $char;  # Output: 疐

PHP:

$char = "\x{7590}";
echo $char;  // Output: 疐

Ruby:

char = "\u{7590}"
puts char  # Output: 疐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007590";  /* Display: 疐 */
}

HTML Decimal:

<p>HTML decimal: &#30096;</p>  <!-- Display: 疐 -->

HTML Hexadecimal:

<p>HTML hex: &#x7590;</p>  <!-- Display: 疐 -->

URL Encoding:

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

Encodings

MD5:

ba4a2eaf9a38be13c7fa30481d6f4d80

SHA1:

fdde90e288beffe0679aa403541bba5eb1da6a36

Base64:

55aQ