Unicode Finder

"淍" U+6DCD(CJK UNIFIED IDEOGRAPH-6DCD)

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

Programming

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

Web

CSS
\006DCD
HtmlDecimal
淍
HtmlHexadecimal
淍
Url
%E6%B7%8D

Code

MD5
6bb1b1ece90ec14e98f4b0eb5e62e7ff
Sha1
74f7f69c363a09570f51461f55152afc0b6907c8
Base64
5reN

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DCD';
console.log(char);  // Output: 淍

Java:

char c = '\u6DCD';
System.out.println(c);  // Output: 淍

JSON:

{"text": "\u6DCD"}  // Value: 淍

Python:

char = '\u6DCD'
print(char)  # Output: 淍

Perl:

my $char = "\x{6DCD}";
print $char;  # Output: 淍

PHP:

$char = "\x{6DCD}";
echo $char;  // Output: 淍

Ruby:

char = "\u{6DCD}"
puts char  # Output: 淍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28109;</p>  <!-- Display: 淍 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DCD;</p>  <!-- Display: 淍 -->

URL Encoding:

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

Encodings

MD5:

6bb1b1ece90ec14e98f4b0eb5e62e7ff

SHA1:

74f7f69c363a09570f51461f55152afc0b6907c8

Base64:

5reN