Unicode Finder

"滏" U+6ECF(CJK UNIFIED IDEOGRAPH-6ECF)

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

Programming

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

Web

CSS
\006ECF
HtmlDecimal
滏
HtmlHexadecimal
滏
Url
%E6%BB%8F

Code

MD5
da040d2a40a1c94ab9e7589557a2c290
Sha1
8bbf11b2dd2eb8467d253f9ea52bed9916493d9b
Base64
5ruP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6ECF';
console.log(char);  // Output: 滏

Java:

char c = '\u6ECF';
System.out.println(c);  // Output: 滏

JSON:

{"text": "\u6ECF"}  // Value: 滏

Python:

char = '\u6ECF'
print(char)  # Output: 滏

Perl:

my $char = "\x{6ECF}";
print $char;  # Output: 滏

PHP:

$char = "\x{6ECF}";
echo $char;  // Output: 滏

Ruby:

char = "\u{6ECF}"
puts char  # Output: 滏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28367;</p>  <!-- Display: 滏 -->

HTML Hexadecimal:

<p>HTML hex: &#x6ECF;</p>  <!-- Display: 滏 -->

URL Encoding:

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

Encodings

MD5:

da040d2a40a1c94ab9e7589557a2c290

SHA1:

8bbf11b2dd2eb8467d253f9ea52bed9916493d9b

Base64:

5ruP