Unicode Finder

"滁" U+6EC1(CJK UNIFIED IDEOGRAPH-6EC1)

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

Programming

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

Web

CSS
\006EC1
HtmlDecimal
滁
HtmlHexadecimal
滁
Url
%E6%BB%81

Code

MD5
c24f70e48c3b14f4fa00b742fd7213d9
Sha1
052a1eaecbf2dc00c90dfeefcf2ff956ce7a64f5
Base64
5ruB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6EC1';
console.log(char);  // Output: 滁

Java:

char c = '\u6EC1';
System.out.println(c);  // Output: 滁

JSON:

{"text": "\u6EC1"}  // Value: 滁

Python:

char = '\u6EC1'
print(char)  # Output: 滁

Perl:

my $char = "\x{6EC1}";
print $char;  # Output: 滁

PHP:

$char = "\x{6EC1}";
echo $char;  // Output: 滁

Ruby:

char = "\u{6EC1}"
puts char  # Output: 滁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28353;</p>  <!-- Display: 滁 -->

HTML Hexadecimal:

<p>HTML hex: &#x6EC1;</p>  <!-- Display: 滁 -->

URL Encoding:

// 滁 URL encoding
https://unicodefinder.com/search.php?query=%E6%BB%81

Encodings

MD5:

c24f70e48c3b14f4fa00b742fd7213d9

SHA1:

052a1eaecbf2dc00c90dfeefcf2ff956ce7a64f5

Base64:

5ruB