Unicode Finder

"淽" U+6DFD(CJK UNIFIED IDEOGRAPH-6DFD)

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

Programming

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

Web

CSS
\006DFD
HtmlDecimal
淽
HtmlHexadecimal
淽
Url
%E6%B7%BD

Code

MD5
c0f1e92146a50ef27d6fbe5738b2ff06
Sha1
f28c90d8c385b2942a5d8fcb4e711e6cafc97d1c
Base64
5re9

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DFD';
console.log(char);  // Output: 淽

Java:

char c = '\u6DFD';
System.out.println(c);  // Output: 淽

JSON:

{"text": "\u6DFD"}  // Value: 淽

Python:

char = '\u6DFD'
print(char)  # Output: 淽

Perl:

my $char = "\x{6DFD}";
print $char;  # Output: 淽

PHP:

$char = "\x{6DFD}";
echo $char;  // Output: 淽

Ruby:

char = "\u{6DFD}"
puts char  # Output: 淽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28157;</p>  <!-- Display: 淽 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DFD;</p>  <!-- Display: 淽 -->

URL Encoding:

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

Encodings

MD5:

c0f1e92146a50ef27d6fbe5738b2ff06

SHA1:

f28c90d8c385b2942a5d8fcb4e711e6cafc97d1c

Base64:

5re9