Unicode Finder

"疅" U+7585(CJK UNIFIED IDEOGRAPH-7585)

U+7585
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7585

Programming

C
\u7585
JavaScript
\u7585
Java
\u7585
Json
\u7585
Python
\u7585
Perl
\x{7585}
PHP
\x{7585}
Ruby
\u{7585}
Rust
\u{7585}
Go
\u7585

Web

CSS
\007585
HtmlDecimal
疅
HtmlHexadecimal
疅
Url
%E7%96%85

Code

MD5
2a85023c20478136ef0f0b6deb160259
Sha1
bb21a98bd3ae524e5fe6e11a24aba9f8204fe334
Base64
55aF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7585';
console.log(char);  // Output: 疅

Java:

char c = '\u7585';
System.out.println(c);  // Output: 疅

JSON:

{"text": "\u7585"}  // Value: 疅

Python:

char = '\u7585'
print(char)  # Output: 疅

Perl:

my $char = "\x{7585}";
print $char;  # Output: 疅

PHP:

$char = "\x{7585}";
echo $char;  // Output: 疅

Ruby:

char = "\u{7585}"
puts char  # Output: 疅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007585";  /* Display: 疅 */
}

HTML Decimal:

<p>HTML decimal: &#30085;</p>  <!-- Display: 疅 -->

HTML Hexadecimal:

<p>HTML hex: &#x7585;</p>  <!-- Display: 疅 -->

URL Encoding:

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

Encodings

MD5:

2a85023c20478136ef0f0b6deb160259

SHA1:

bb21a98bd3ae524e5fe6e11a24aba9f8204fe334

Base64:

55aF