Unicode Finder

"蘜" U+861C(CJK UNIFIED IDEOGRAPH-861C)

U+861C
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-861C

Programming

C
\u861C
JavaScript
\u861C
Java
\u861C
Json
\u861C
Python
\u861C
Perl
\x{861C}
PHP
\x{861C}
Ruby
\u{861C}
Rust
\u{861C}
Go
\u861C

Web

CSS
\00861C
HtmlDecimal
蘜
HtmlHexadecimal
蘜
Url
%E8%98%9C

Code

MD5
a3bf95c2dce69607bae409d237f1e7b4
Sha1
de1b9d803e6164230959c3bcc496b03cac426e64
Base64
6Jic

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u861C';
console.log(char);  // Output: 蘜

Java:

char c = '\u861C';
System.out.println(c);  // Output: 蘜

JSON:

{"text": "\u861C"}  // Value: 蘜

Python:

char = '\u861C'
print(char)  # Output: 蘜

Perl:

my $char = "\x{861C}";
print $char;  # Output: 蘜

PHP:

$char = "\x{861C}";
echo $char;  // Output: 蘜

Ruby:

char = "\u{861C}"
puts char  # Output: 蘜

Rust:

let c = '\u{861C}';
println!("{}", c);  // Output: 蘜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00861C";  /* Display: 蘜 */
}

HTML Decimal:

<p>HTML decimal: &#34332;</p>  <!-- Display: 蘜 -->

HTML Hexadecimal:

<p>HTML hex: &#x861C;</p>  <!-- Display: 蘜 -->

URL Encoding:

// 蘜 URL encoding
https://unicodefinder.com/search.php?query=%E8%98%9C

Encodings

MD5:

a3bf95c2dce69607bae409d237f1e7b4

SHA1:

de1b9d803e6164230959c3bcc496b03cac426e64

Base64:

6Jic