Unicode Finder

"滇" U+6EC7(CJK UNIFIED IDEOGRAPH-6EC7)

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

Programming

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

Web

CSS
\006EC7
HtmlDecimal
滇
HtmlHexadecimal
滇
Url
%E6%BB%87

Code

MD5
4bd894a32715ec9456d0a18fd6fa45a5
Sha1
fdece9d84923ff7a0d6d7f3e112bd3063bcad821
Base64
5ruH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6EC7';
console.log(char);  // Output: 滇

Java:

char c = '\u6EC7';
System.out.println(c);  // Output: 滇

JSON:

{"text": "\u6EC7"}  // Value: 滇

Python:

char = '\u6EC7'
print(char)  # Output: 滇

Perl:

my $char = "\x{6EC7}";
print $char;  # Output: 滇

PHP:

$char = "\x{6EC7}";
echo $char;  // Output: 滇

Ruby:

char = "\u{6EC7}"
puts char  # Output: 滇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28359;</p>  <!-- Display: 滇 -->

HTML Hexadecimal:

<p>HTML hex: &#x6EC7;</p>  <!-- Display: 滇 -->

URL Encoding:

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

Encodings

MD5:

4bd894a32715ec9456d0a18fd6fa45a5

SHA1:

fdece9d84923ff7a0d6d7f3e112bd3063bcad821

Base64:

5ruH