Unicode Finder

"淾" U+6DFE(CJK UNIFIED IDEOGRAPH-6DFE)

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

Programming

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

Web

CSS
\006DFE
HtmlDecimal
淾
HtmlHexadecimal
淾
Url
%E6%B7%BE

Code

MD5
448d7843e8876cba85dbf15ace54d993
Sha1
0f41c41adc5b593da76765ec2894c6d3760a753c
Base64
5re+

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DFE';
console.log(char);  // Output: 淾

Java:

char c = '\u6DFE';
System.out.println(c);  // Output: 淾

JSON:

{"text": "\u6DFE"}  // Value: 淾

Python:

char = '\u6DFE'
print(char)  # Output: 淾

Perl:

my $char = "\x{6DFE}";
print $char;  # Output: 淾

PHP:

$char = "\x{6DFE}";
echo $char;  // Output: 淾

Ruby:

char = "\u{6DFE}"
puts char  # Output: 淾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28158;</p>  <!-- Display: 淾 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DFE;</p>  <!-- Display: 淾 -->

URL Encoding:

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

Encodings

MD5:

448d7843e8876cba85dbf15ace54d993

SHA1:

0f41c41adc5b593da76765ec2894c6d3760a753c

Base64:

5re+