Unicode Finder

"涔" U+6D94(CJK UNIFIED IDEOGRAPH-6D94)

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

Programming

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

Web

CSS
\006D94
HtmlDecimal
涔
HtmlHexadecimal
涔
Url
%E6%B6%94

Code

MD5
54a574e8d0bf2204589f76f7aaee679b
Sha1
143b2e3199f25378daf7c71399148bb413898a1c
Base64
5raU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D94';
console.log(char);  // Output: 涔

Java:

char c = '\u6D94';
System.out.println(c);  // Output: 涔

JSON:

{"text": "\u6D94"}  // Value: 涔

Python:

char = '\u6D94'
print(char)  # Output: 涔

Perl:

my $char = "\x{6D94}";
print $char;  # Output: 涔

PHP:

$char = "\x{6D94}";
echo $char;  // Output: 涔

Ruby:

char = "\u{6D94}"
puts char  # Output: 涔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28052;</p>  <!-- Display: 涔 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D94;</p>  <!-- Display: 涔 -->

URL Encoding:

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

Encodings

MD5:

54a574e8d0bf2204589f76f7aaee679b

SHA1:

143b2e3199f25378daf7c71399148bb413898a1c

Base64:

5raU