Unicode Finder

"妜" U+599C(CJK UNIFIED IDEOGRAPH-599C)

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

Programming

C
\u599C
JavaScript
\u599C
Java
\u599C
Json
\u599C
Python
\u599C
Perl
\x{599C}
PHP
\x{599C}
Ruby
\u{599C}
Rust
\u{599C}
Go
\u599C

Web

CSS
\00599C
HtmlDecimal
妜
HtmlHexadecimal
妜
Url
%E5%A6%9C

Code

MD5
edc233ff2c214f7f9265d8a1a86a6d19
Sha1
1302e5d1f8dfb265485d4d6df59edcbe70350676
Base64
5aac

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u599C';
console.log(char);  // Output: 妜

Java:

char c = '\u599C';
System.out.println(c);  // Output: 妜

JSON:

{"text": "\u599C"}  // Value: 妜

Python:

char = '\u599C'
print(char)  # Output: 妜

Perl:

my $char = "\x{599C}";
print $char;  # Output: 妜

PHP:

$char = "\x{599C}";
echo $char;  // Output: 妜

Ruby:

char = "\u{599C}"
puts char  # Output: 妜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22940;</p>  <!-- Display: 妜 -->

HTML Hexadecimal:

<p>HTML hex: &#x599C;</p>  <!-- Display: 妜 -->

URL Encoding:

// 妜 URL encoding
https://unicodefinder.com/search.php?query=%E5%A6%9C

Encodings

MD5:

edc233ff2c214f7f9265d8a1a86a6d19

SHA1:

1302e5d1f8dfb265485d4d6df59edcbe70350676

Base64:

5aac