Unicode Finder

"淀" U+6DC0(CJK UNIFIED IDEOGRAPH-6DC0)

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

Programming

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

Web

CSS
\006DC0
HtmlDecimal
淀
HtmlHexadecimal
淀
Url
%E6%B7%80

Code

MD5
7c2990ebb8057b3fe66b9e93c4aaf974
Sha1
8552e4bca7df524ec48c0a6152df1ce1eb371153
Base64
5reA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DC0';
console.log(char);  // Output: 淀

Java:

char c = '\u6DC0';
System.out.println(c);  // Output: 淀

JSON:

{"text": "\u6DC0"}  // Value: 淀

Python:

char = '\u6DC0'
print(char)  # Output: 淀

Perl:

my $char = "\x{6DC0}";
print $char;  # Output: 淀

PHP:

$char = "\x{6DC0}";
echo $char;  // Output: 淀

Ruby:

char = "\u{6DC0}"
puts char  # Output: 淀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28096;</p>  <!-- Display: 淀 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DC0;</p>  <!-- Display: 淀 -->

URL Encoding:

// 淀 URL encoding
https://unicodefinder.com/search.php?query=%E6%B7%80

Encodings

MD5:

7c2990ebb8057b3fe66b9e93c4aaf974

SHA1:

8552e4bca7df524ec48c0a6152df1ce1eb371153

Base64:

5reA