Unicode Finder

"洜" U+6D1C(CJK UNIFIED IDEOGRAPH-6D1C)

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

Programming

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

Web

CSS
\006D1C
HtmlDecimal
洜
HtmlHexadecimal
洜
Url
%E6%B4%9C

Code

MD5
1d8576e17725792b4486ed0d7b93ed03
Sha1
68c2c260909291a6f77365fb6684cd3d33265df2
Base64
5rSc

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6D1C';
console.log(char);  // Output: 洜

Java:

char c = '\u6D1C';
System.out.println(c);  // Output: 洜

JSON:

{"text": "\u6D1C"}  // Value: 洜

Python:

char = '\u6D1C'
print(char)  # Output: 洜

Perl:

my $char = "\x{6D1C}";
print $char;  # Output: 洜

PHP:

$char = "\x{6D1C}";
echo $char;  // Output: 洜

Ruby:

char = "\u{6D1C}"
puts char  # Output: 洜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#27932;</p>  <!-- Display: 洜 -->

HTML Hexadecimal:

<p>HTML hex: &#x6D1C;</p>  <!-- Display: 洜 -->

URL Encoding:

// 洜 URL encoding
https://unicodefinder.com/search.php?query=%E6%B4%9C

Encodings

MD5:

1d8576e17725792b4486ed0d7b93ed03

SHA1:

68c2c260909291a6f77365fb6684cd3d33265df2

Base64:

5rSc