Unicode Finder

"淼" U+6DFC(CJK UNIFIED IDEOGRAPH-6DFC)

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

Programming

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

Web

CSS
\006DFC
HtmlDecimal
淼
HtmlHexadecimal
淼
Url
%E6%B7%BC

Code

MD5
eab6454b775316ae948f135dd812c4cc
Sha1
9514ef572653b9c00fda06b09eae4f060da004c0
Base64
5re8

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DFC';
console.log(char);  // Output: 淼

Java:

char c = '\u6DFC';
System.out.println(c);  // Output: 淼

JSON:

{"text": "\u6DFC"}  // Value: 淼

Python:

char = '\u6DFC'
print(char)  # Output: 淼

Perl:

my $char = "\x{6DFC}";
print $char;  # Output: 淼

PHP:

$char = "\x{6DFC}";
echo $char;  // Output: 淼

Ruby:

char = "\u{6DFC}"
puts char  # Output: 淼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28156;</p>  <!-- Display: 淼 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DFC;</p>  <!-- Display: 淼 -->

URL Encoding:

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

Encodings

MD5:

eab6454b775316ae948f135dd812c4cc

SHA1:

9514ef572653b9c00fda06b09eae4f060da004c0

Base64:

5re8