Unicode Finder

"淸" U+6DF8(CJK UNIFIED IDEOGRAPH-6DF8)

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

Programming

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

Web

CSS
\006DF8
HtmlDecimal
淸
HtmlHexadecimal
淸
Url
%E6%B7%B8

Code

MD5
27d257a4424178620c39877f08960f30
Sha1
02055a1c3a28457e4a6275b46f82cb252a134795
Base64
5re4

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DF8';
console.log(char);  // Output: 淸

Java:

char c = '\u6DF8';
System.out.println(c);  // Output: 淸

JSON:

{"text": "\u6DF8"}  // Value: 淸

Python:

char = '\u6DF8'
print(char)  # Output: 淸

Perl:

my $char = "\x{6DF8}";
print $char;  # Output: 淸

PHP:

$char = "\x{6DF8}";
echo $char;  // Output: 淸

Ruby:

char = "\u{6DF8}"
puts char  # Output: 淸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28152;</p>  <!-- Display: 淸 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DF8;</p>  <!-- Display: 淸 -->

URL Encoding:

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

Encodings

MD5:

27d257a4424178620c39877f08960f30

SHA1:

02055a1c3a28457e4a6275b46f82cb252a134795

Base64:

5re4