Unicode Finder

"涃" U+6D83(CJK UNIFIED IDEOGRAPH-6D83)

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

Programming

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

Web

CSS
\006D83
HtmlDecimal
涃
HtmlHexadecimal
涃
Url
%E6%B6%83

Code

MD5
521f766b1cd3e547e351a1a4e0ea894e
Sha1
d70d92575359a242b650ca901e5a4c170e8cb959
Base64
5raD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D83';
console.log(char);  // Output: 涃

Java:

char c = '\u6D83';
System.out.println(c);  // Output: 涃

JSON:

{"text": "\u6D83"}  // Value: 涃

Python:

char = '\u6D83'
print(char)  # Output: 涃

Perl:

my $char = "\x{6D83}";
print $char;  # Output: 涃

PHP:

$char = "\x{6D83}";
echo $char;  // Output: 涃

Ruby:

char = "\u{6D83}"
puts char  # Output: 涃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28035;</p>  <!-- Display: 涃 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D83;</p>  <!-- Display: 涃 -->

URL Encoding:

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

Encodings

MD5:

521f766b1cd3e547e351a1a4e0ea894e

SHA1:

d70d92575359a242b650ca901e5a4c170e8cb959

Base64:

5raD