Unicode Finder

"淄" U+6DC4(CJK UNIFIED IDEOGRAPH-6DC4)

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

Programming

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

Web

CSS
\006DC4
HtmlDecimal
淄
HtmlHexadecimal
淄
Url
%E6%B7%84

Code

MD5
ab1dd3bf0a3f5547744fd6ab0e43f808
Sha1
0927cb474030f154a70b3ede1f9c12f96ff8fead
Base64
5reE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DC4';
console.log(char);  // Output: 淄

Java:

char c = '\u6DC4';
System.out.println(c);  // Output: 淄

JSON:

{"text": "\u6DC4"}  // Value: 淄

Python:

char = '\u6DC4'
print(char)  # Output: 淄

Perl:

my $char = "\x{6DC4}";
print $char;  # Output: 淄

PHP:

$char = "\x{6DC4}";
echo $char;  // Output: 淄

Ruby:

char = "\u{6DC4}"
puts char  # Output: 淄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28100;</p>  <!-- Display: 淄 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DC4;</p>  <!-- Display: 淄 -->

URL Encoding:

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

Encodings

MD5:

ab1dd3bf0a3f5547744fd6ab0e43f808

SHA1:

0927cb474030f154a70b3ede1f9c12f96ff8fead

Base64:

5reE