Unicode Finder

"涂" U+6D82(CJK UNIFIED IDEOGRAPH-6D82)

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

Programming

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

Web

CSS
\006D82
HtmlDecimal
涂
HtmlHexadecimal
涂
Url
%E6%B6%82

Code

MD5
835f5434d12561e133686560214437e5
Sha1
685da0bcbac4d6ae433e240ecb4625afe0db60f4
Base64
5raC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D82';
console.log(char);  // Output: 涂

Java:

char c = '\u6D82';
System.out.println(c);  // Output: 涂

JSON:

{"text": "\u6D82"}  // Value: 涂

Python:

char = '\u6D82'
print(char)  # Output: 涂

Perl:

my $char = "\x{6D82}";
print $char;  # Output: 涂

PHP:

$char = "\x{6D82}";
echo $char;  // Output: 涂

Ruby:

char = "\u{6D82}"
puts char  # Output: 涂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28034;</p>  <!-- Display: 涂 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D82;</p>  <!-- Display: 涂 -->

URL Encoding:

// 涂 URL encoding
https://unicodefinder.com/search.php?query=%E6%B6%82

Encodings

MD5:

835f5434d12561e133686560214437e5

SHA1:

685da0bcbac4d6ae433e240ecb4625afe0db60f4

Base64:

5raC