Unicode Finder

"戚" U+621A(CJK UNIFIED IDEOGRAPH-621A)

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

Programming

C
\u621A
JavaScript
\u621A
Java
\u621A
Json
\u621A
Python
\u621A
Perl
\x{621A}
PHP
\x{621A}
Ruby
\u{621A}
Rust
\u{621A}
Go
\u621A

Web

CSS
\00621A
HtmlDecimal
戚
HtmlHexadecimal
戚
Url
%E6%88%9A

Code

MD5
098a53b240340f15d50edf53a5da0010
Sha1
88e96db1d3eeb423ebfafa159b3c9c663f6327c7
Base64
5oia

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u621A';
console.log(char);  // Output: 戚

Java:

char c = '\u621A';
System.out.println(c);  // Output: 戚

JSON:

{"text": "\u621A"}  // Value: 戚

Python:

char = '\u621A'
print(char)  # Output: 戚

Perl:

my $char = "\x{621A}";
print $char;  # Output: 戚

PHP:

$char = "\x{621A}";
echo $char;  // Output: 戚

Ruby:

char = "\u{621A}"
puts char  # Output: 戚

Rust:

let c = '\u{621A}';
println!("{}", c);  // Output: 戚

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00621A";  /* Display: 戚 */
}

HTML Decimal:

<p>HTML decimal: &#25114;</p>  <!-- Display: 戚 -->

HTML Hexadecimal:

<p>HTML hex: &#x621A;</p>  <!-- Display: 戚 -->

URL Encoding:

// 戚 URL encoding
https://unicodefinder.com/search.php?query=%E6%88%9A

Encodings

MD5:

098a53b240340f15d50edf53a5da0010

SHA1:

88e96db1d3eeb423ebfafa159b3c9c663f6327c7

Base64:

5oia