Unicode Finder

"淌" U+6DCC(CJK UNIFIED IDEOGRAPH-6DCC)

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

Programming

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

Web

CSS
\006DCC
HtmlDecimal
淌
HtmlHexadecimal
淌
Url
%E6%B7%8C

Code

MD5
cdd444524b1279b07697e63bd8bc09fc
Sha1
c63327ee48cbde64ec4cfeb4d7a5385be9520347
Base64
5reM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DCC';
console.log(char);  // Output: 淌

Java:

char c = '\u6DCC';
System.out.println(c);  // Output: 淌

JSON:

{"text": "\u6DCC"}  // Value: 淌

Python:

char = '\u6DCC'
print(char)  # Output: 淌

Perl:

my $char = "\x{6DCC}";
print $char;  # Output: 淌

PHP:

$char = "\x{6DCC}";
echo $char;  // Output: 淌

Ruby:

char = "\u{6DCC}"
puts char  # Output: 淌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28108;</p>  <!-- Display: 淌 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DCC;</p>  <!-- Display: 淌 -->

URL Encoding:

// 淌 URL encoding
https://unicodefinder.com/search.php?query=%E6%B7%8C

Encodings

MD5:

cdd444524b1279b07697e63bd8bc09fc

SHA1:

c63327ee48cbde64ec4cfeb4d7a5385be9520347

Base64:

5reM