Unicode Finder

"滆" U+6EC6(CJK UNIFIED IDEOGRAPH-6EC6)

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

Programming

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

Web

CSS
\006EC6
HtmlDecimal
滆
HtmlHexadecimal
滆
Url
%E6%BB%86

Code

MD5
0735e7bc2745d4aedecf038e42ac7465
Sha1
26386fc6f5d76017cfbd4c86dad7756988f3248b
Base64
5ruG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6EC6';
console.log(char);  // Output: 滆

Java:

char c = '\u6EC6';
System.out.println(c);  // Output: 滆

JSON:

{"text": "\u6EC6"}  // Value: 滆

Python:

char = '\u6EC6'
print(char)  # Output: 滆

Perl:

my $char = "\x{6EC6}";
print $char;  # Output: 滆

PHP:

$char = "\x{6EC6}";
echo $char;  // Output: 滆

Ruby:

char = "\u{6EC6}"
puts char  # Output: 滆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28358;</p>  <!-- Display: 滆 -->

HTML Hexadecimal:

<p>HTML hex: &#x6EC6;</p>  <!-- Display: 滆 -->

URL Encoding:

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

Encodings

MD5:

0735e7bc2745d4aedecf038e42ac7465

SHA1:

26386fc6f5d76017cfbd4c86dad7756988f3248b

Base64:

5ruG