Unicode Finder

"淭" U+6DED(CJK UNIFIED IDEOGRAPH-6DED)

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

Programming

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

Web

CSS
\006DED
HtmlDecimal
淭
HtmlHexadecimal
淭
Url
%E6%B7%AD

Code

MD5
97fabfa24cd40979b06a47c3918287a0
Sha1
cd28544a2f6df8f52989b69c341e3ffdc0f5d869
Base64
5ret

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DED';
console.log(char);  // Output: 淭

Java:

char c = '\u6DED';
System.out.println(c);  // Output: 淭

JSON:

{"text": "\u6DED"}  // Value: 淭

Python:

char = '\u6DED'
print(char)  # Output: 淭

Perl:

my $char = "\x{6DED}";
print $char;  # Output: 淭

PHP:

$char = "\x{6DED}";
echo $char;  // Output: 淭

Ruby:

char = "\u{6DED}"
puts char  # Output: 淭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28141;</p>  <!-- Display: 淭 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DED;</p>  <!-- Display: 淭 -->

URL Encoding:

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

Encodings

MD5:

97fabfa24cd40979b06a47c3918287a0

SHA1:

cd28544a2f6df8f52989b69c341e3ffdc0f5d869

Base64:

5ret