Unicode Finder

"滊" U+6ECA(CJK UNIFIED IDEOGRAPH-6ECA)

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

Programming

C
\u6ECA
JavaScript
\u6ECA
Java
\u6ECA
Json
\u6ECA
Python
\u6ECA
Perl
\x{6ECA}
PHP
\x{6ECA}
Ruby
\u{6ECA}
Rust
\u{6ECA}
Go
\u6ECA

Web

CSS
\006ECA
HtmlDecimal
滊
HtmlHexadecimal
滊
Url
%E6%BB%8A

Code

MD5
82bf98ddda4873ceb6db54fed8617b7a
Sha1
8592018a0c71da3e4b0c39a72908a34c409df891
Base64
5ruK

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6ECA';
console.log(char);  // Output: 滊

Java:

char c = '\u6ECA';
System.out.println(c);  // Output: 滊

JSON:

{"text": "\u6ECA"}  // Value: 滊

Python:

char = '\u6ECA'
print(char)  # Output: 滊

Perl:

my $char = "\x{6ECA}";
print $char;  # Output: 滊

PHP:

$char = "\x{6ECA}";
echo $char;  // Output: 滊

Ruby:

char = "\u{6ECA}"
puts char  # Output: 滊

Rust:

let c = '\u{6ECA}';
println!("{}", c);  // Output: 滊

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006ECA";  /* Display: 滊 */
}

HTML Decimal:

<p>HTML decimal: &#28362;</p>  <!-- Display: 滊 -->

HTML Hexadecimal:

<p>HTML hex: &#x6ECA;</p>  <!-- Display: 滊 -->

URL Encoding:

// 滊 URL encoding
https://unicodefinder.com/search.php?query=%E6%BB%8A

Encodings

MD5:

82bf98ddda4873ceb6db54fed8617b7a

SHA1:

8592018a0c71da3e4b0c39a72908a34c409df891

Base64:

5ruK