Unicode Finder

"滬" U+6EEC(CJK UNIFIED IDEOGRAPH-6EEC)

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

Programming

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

Web

CSS
\006EEC
HtmlDecimal
滬
HtmlHexadecimal
滬
Url
%E6%BB%AC

Code

MD5
86b1ec1c91b7177be71151e53b0d4b92
Sha1
eecfa0dcabe2958f7119d9b65ca17b062494eb57
Base64
5rus

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6EEC';
console.log(char);  // Output: 滬

Java:

char c = '\u6EEC';
System.out.println(c);  // Output: 滬

JSON:

{"text": "\u6EEC"}  // Value: 滬

Python:

char = '\u6EEC'
print(char)  # Output: 滬

Perl:

my $char = "\x{6EEC}";
print $char;  # Output: 滬

PHP:

$char = "\x{6EEC}";
echo $char;  // Output: 滬

Ruby:

char = "\u{6EEC}"
puts char  # Output: 滬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28396;</p>  <!-- Display: 滬 -->

HTML Hexadecimal:

<p>HTML hex: &#x6EEC;</p>  <!-- Display: 滬 -->

URL Encoding:

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

Encodings

MD5:

86b1ec1c91b7177be71151e53b0d4b92

SHA1:

eecfa0dcabe2958f7119d9b65ca17b062494eb57

Base64:

5rus