Unicode Finder

"捩" U+6369(CJK UNIFIED IDEOGRAPH-6369)

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

Programming

C
\u6369
JavaScript
\u6369
Java
\u6369
Json
\u6369
Python
\u6369
Perl
\x{6369}
PHP
\x{6369}
Ruby
\u{6369}
Rust
\u{6369}
Go
\u6369

Web

CSS
\006369
HtmlDecimal
捩
HtmlHexadecimal
捩
Url
%E6%8D%A9

Code

MD5
56ad368c7ffc497343b80669e1856011
Sha1
407815171c74f800cce3c9661cf3a1e83fd67b8f
Base64
5o2p

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6369';
console.log(char);  // Output: 捩

Java:

char c = '\u6369';
System.out.println(c);  // Output: 捩

JSON:

{"text": "\u6369"}  // Value: 捩

Python:

char = '\u6369'
print(char)  # Output: 捩

Perl:

my $char = "\x{6369}";
print $char;  # Output: 捩

PHP:

$char = "\x{6369}";
echo $char;  // Output: 捩

Ruby:

char = "\u{6369}"
puts char  # Output: 捩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006369";  /* Display: 捩 */
}

HTML Decimal:

<p>HTML decimal: &#25449;</p>  <!-- Display: 捩 -->

HTML Hexadecimal:

<p>HTML hex: &#x6369;</p>  <!-- Display: 捩 -->

URL Encoding:

// 捩 URL encoding
https://unicodefinder.com/search.php?query=%E6%8D%A9

Encodings

MD5:

56ad368c7ffc497343b80669e1856011

SHA1:

407815171c74f800cce3c9661cf3a1e83fd67b8f

Base64:

5o2p