Unicode Finder

"淔" U+6DD4(CJK UNIFIED IDEOGRAPH-6DD4)

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

Programming

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

Web

CSS
\006DD4
HtmlDecimal
淔
HtmlHexadecimal
淔
Url
%E6%B7%94

Code

MD5
7bcc42ff5f3ffd1d07a8858a6ae8efbd
Sha1
6f793d1c80e49b5bd17242e3c4a7d262ecdbcd1d
Base64
5reU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DD4';
console.log(char);  // Output: 淔

Java:

char c = '\u6DD4';
System.out.println(c);  // Output: 淔

JSON:

{"text": "\u6DD4"}  // Value: 淔

Python:

char = '\u6DD4'
print(char)  # Output: 淔

Perl:

my $char = "\x{6DD4}";
print $char;  # Output: 淔

PHP:

$char = "\x{6DD4}";
echo $char;  // Output: 淔

Ruby:

char = "\u{6DD4}"
puts char  # Output: 淔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28116;</p>  <!-- Display: 淔 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DD4;</p>  <!-- Display: 淔 -->

URL Encoding:

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

Encodings

MD5:

7bcc42ff5f3ffd1d07a8858a6ae8efbd

SHA1:

6f793d1c80e49b5bd17242e3c4a7d262ecdbcd1d

Base64:

5reU