Unicode Finder

"妅" U+5985(CJK UNIFIED IDEOGRAPH-5985)

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

Programming

C
\u5985
JavaScript
\u5985
Java
\u5985
Json
\u5985
Python
\u5985
Perl
\x{5985}
PHP
\x{5985}
Ruby
\u{5985}
Rust
\u{5985}
Go
\u5985

Web

CSS
\005985
HtmlDecimal
妅
HtmlHexadecimal
妅
Url
%E5%A6%85

Code

MD5
e148ea529f7c57016169b5a912c2599f
Sha1
a6940daaf63d4cf90d159b935ac77ab30db29c6a
Base64
5aaF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5985';
console.log(char);  // Output: 妅

Java:

char c = '\u5985';
System.out.println(c);  // Output: 妅

JSON:

{"text": "\u5985"}  // Value: 妅

Python:

char = '\u5985'
print(char)  # Output: 妅

Perl:

my $char = "\x{5985}";
print $char;  # Output: 妅

PHP:

$char = "\x{5985}";
echo $char;  // Output: 妅

Ruby:

char = "\u{5985}"
puts char  # Output: 妅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005985";  /* Display: 妅 */
}

HTML Decimal:

<p>HTML decimal: &#22917;</p>  <!-- Display: 妅 -->

HTML Hexadecimal:

<p>HTML hex: &#x5985;</p>  <!-- Display: 妅 -->

URL Encoding:

// 妅 URL encoding
https://unicodefinder.com/search.php?query=%E5%A6%85

Encodings

MD5:

e148ea529f7c57016169b5a912c2599f

SHA1:

a6940daaf63d4cf90d159b935ac77ab30db29c6a

Base64:

5aaF