Unicode Finder

"洳" U+6D33(CJK UNIFIED IDEOGRAPH-6D33)

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

Programming

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

Web

CSS
\006D33
HtmlDecimal
洳
HtmlHexadecimal
洳
Url
%E6%B4%B3

Code

MD5
6ecc2e3c00bed64b5c82ab59e51148b8
Sha1
c7aea0228c2d265c555bfa571cc5755a45738d83
Base64
5rSz

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D33';
console.log(char);  // Output: 洳

Java:

char c = '\u6D33';
System.out.println(c);  // Output: 洳

JSON:

{"text": "\u6D33"}  // Value: 洳

Python:

char = '\u6D33'
print(char)  # Output: 洳

Perl:

my $char = "\x{6D33}";
print $char;  # Output: 洳

PHP:

$char = "\x{6D33}";
echo $char;  // Output: 洳

Ruby:

char = "\u{6D33}"
puts char  # Output: 洳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27955;</p>  <!-- Display: 洳 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D33;</p>  <!-- Display: 洳 -->

URL Encoding:

// 洳 URL encoding
https://unicodefinder.com/search.php?query=%E6%B4%B3

Encodings

MD5:

6ecc2e3c00bed64b5c82ab59e51148b8

SHA1:

c7aea0228c2d265c555bfa571cc5755a45738d83

Base64:

5rSz