Unicode Finder

"淋" U+6DCB(CJK UNIFIED IDEOGRAPH-6DCB)

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

Programming

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

Web

CSS
\006DCB
HtmlDecimal
淋
HtmlHexadecimal
淋
Url
%E6%B7%8B

Code

MD5
f6168660e0a7f189fd4a6305ff67ac21
Sha1
89505a217e7bfef9c89d69520214dddf65e81b53
Base64
5reL

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DCB';
console.log(char);  // Output: 淋

Java:

char c = '\u6DCB';
System.out.println(c);  // Output: 淋

JSON:

{"text": "\u6DCB"}  // Value: 淋

Python:

char = '\u6DCB'
print(char)  # Output: 淋

Perl:

my $char = "\x{6DCB}";
print $char;  # Output: 淋

PHP:

$char = "\x{6DCB}";
echo $char;  // Output: 淋

Ruby:

char = "\u{6DCB}"
puts char  # Output: 淋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28107;</p>  <!-- Display: 淋 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DCB;</p>  <!-- Display: 淋 -->

URL Encoding:

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

Encodings

MD5:

f6168660e0a7f189fd4a6305ff67ac21

SHA1:

89505a217e7bfef9c89d69520214dddf65e81b53

Base64:

5reL