Unicode Finder

"淃" U+6DC3(CJK UNIFIED IDEOGRAPH-6DC3)

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

Programming

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

Web

CSS
\006DC3
HtmlDecimal
淃
HtmlHexadecimal
淃
Url
%E6%B7%83

Code

MD5
34b0c9e4522644d99a6955716c05d463
Sha1
e06d88da26f5fd5376758a125c069834aa4efaae
Base64
5reD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DC3';
console.log(char);  // Output: 淃

Java:

char c = '\u6DC3';
System.out.println(c);  // Output: 淃

JSON:

{"text": "\u6DC3"}  // Value: 淃

Python:

char = '\u6DC3'
print(char)  # Output: 淃

Perl:

my $char = "\x{6DC3}";
print $char;  # Output: 淃

PHP:

$char = "\x{6DC3}";
echo $char;  // Output: 淃

Ruby:

char = "\u{6DC3}"
puts char  # Output: 淃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28099;</p>  <!-- Display: 淃 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DC3;</p>  <!-- Display: 淃 -->

URL Encoding:

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

Encodings

MD5:

34b0c9e4522644d99a6955716c05d463

SHA1:

e06d88da26f5fd5376758a125c069834aa4efaae

Base64:

5reD