Unicode Finder

"涍" U+6D8D(CJK UNIFIED IDEOGRAPH-6D8D)

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

Programming

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

Web

CSS
\006D8D
HtmlDecimal
涍
HtmlHexadecimal
涍
Url
%E6%B6%8D

Code

MD5
0e54c8b9c6841e74b342b153d652145a
Sha1
0b92c9401eaf5ae8ff33148b060ac68764985dda
Base64
5raN

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D8D';
console.log(char);  // Output: 涍

Java:

char c = '\u6D8D';
System.out.println(c);  // Output: 涍

JSON:

{"text": "\u6D8D"}  // Value: 涍

Python:

char = '\u6D8D'
print(char)  # Output: 涍

Perl:

my $char = "\x{6D8D}";
print $char;  # Output: 涍

PHP:

$char = "\x{6D8D}";
echo $char;  // Output: 涍

Ruby:

char = "\u{6D8D}"
puts char  # Output: 涍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28045;</p>  <!-- Display: 涍 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D8D;</p>  <!-- Display: 涍 -->

URL Encoding:

// 涍 URL encoding
https://unicodefinder.com/search.php?query=%E6%B6%8D

Encodings

MD5:

0e54c8b9c6841e74b342b153d652145a

SHA1:

0b92c9401eaf5ae8ff33148b060ac68764985dda

Base64:

5raN