Unicode Finder

"昜" U+661C(CJK UNIFIED IDEOGRAPH-661C)

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

Programming

C
\u661C
JavaScript
\u661C
Java
\u661C
Json
\u661C
Python
\u661C
Perl
\x{661C}
PHP
\x{661C}
Ruby
\u{661C}
Rust
\u{661C}
Go
\u661C

Web

CSS
\00661C
HtmlDecimal
昜
HtmlHexadecimal
昜
Url
%E6%98%9C

Code

MD5
5fef1b97a3f81a0625b6c109c7731f24
Sha1
68835737a5f9b456e18977643c4ed496f0a65955
Base64
5pic

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u661C';
console.log(char);  // Output: 昜

Java:

char c = '\u661C';
System.out.println(c);  // Output: 昜

JSON:

{"text": "\u661C"}  // Value: 昜

Python:

char = '\u661C'
print(char)  # Output: 昜

Perl:

my $char = "\x{661C}";
print $char;  # Output: 昜

PHP:

$char = "\x{661C}";
echo $char;  // Output: 昜

Ruby:

char = "\u{661C}"
puts char  # Output: 昜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26140;</p>  <!-- Display: 昜 -->

HTML Hexadecimal:

<p>HTML hex: &#x661C;</p>  <!-- Display: 昜 -->

URL Encoding:

// 昜 URL encoding
https://unicodefinder.com/search.php?query=%E6%98%9C

Encodings

MD5:

5fef1b97a3f81a0625b6c109c7731f24

SHA1:

68835737a5f9b456e18977643c4ed496f0a65955

Base64:

5pic