Unicode Finder

"涁" U+6D81(CJK UNIFIED IDEOGRAPH-6D81)

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

Programming

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

Web

CSS
\006D81
HtmlDecimal
涁
HtmlHexadecimal
涁
Url
%E6%B6%81

Code

MD5
9797702342fd2127ce9fb50ff79c05c0
Sha1
27f9398318cddd17417afe3d2233350f9fc8ebeb
Base64
5raB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D81';
console.log(char);  // Output: 涁

Java:

char c = '\u6D81';
System.out.println(c);  // Output: 涁

JSON:

{"text": "\u6D81"}  // Value: 涁

Python:

char = '\u6D81'
print(char)  # Output: 涁

Perl:

my $char = "\x{6D81}";
print $char;  # Output: 涁

PHP:

$char = "\x{6D81}";
echo $char;  // Output: 涁

Ruby:

char = "\u{6D81}"
puts char  # Output: 涁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28033;</p>  <!-- Display: 涁 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D81;</p>  <!-- Display: 涁 -->

URL Encoding:

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

Encodings

MD5:

9797702342fd2127ce9fb50ff79c05c0

SHA1:

27f9398318cddd17417afe3d2233350f9fc8ebeb

Base64:

5raB