Unicode Finder

"涄" U+6D84(CJK UNIFIED IDEOGRAPH-6D84)

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

Programming

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

Web

CSS
\006D84
HtmlDecimal
涄
HtmlHexadecimal
涄
Url
%E6%B6%84

Code

MD5
5b7c3dc51afc185a7abbbbd0fd0aae10
Sha1
46356dc71413c46628fdef607d082f9de35f83ac
Base64
5raE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D84';
console.log(char);  // Output: 涄

Java:

char c = '\u6D84';
System.out.println(c);  // Output: 涄

JSON:

{"text": "\u6D84"}  // Value: 涄

Python:

char = '\u6D84'
print(char)  # Output: 涄

Perl:

my $char = "\x{6D84}";
print $char;  # Output: 涄

PHP:

$char = "\x{6D84}";
echo $char;  // Output: 涄

Ruby:

char = "\u{6D84}"
puts char  # Output: 涄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28036;</p>  <!-- Display: 涄 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D84;</p>  <!-- Display: 涄 -->

URL Encoding:

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

Encodings

MD5:

5b7c3dc51afc185a7abbbbd0fd0aae10

SHA1:

46356dc71413c46628fdef607d082f9de35f83ac

Base64:

5raE