Unicode Finder

"蘀" U+8600(CJK UNIFIED IDEOGRAPH-8600)

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

Programming

C
\u8600
JavaScript
\u8600
Java
\u8600
Json
\u8600
Python
\u8600
Perl
\x{8600}
PHP
\x{8600}
Ruby
\u{8600}
Rust
\u{8600}
Go
\u8600

Web

CSS
\008600
HtmlDecimal
蘀
HtmlHexadecimal
蘀
Url
%E8%98%80

Code

MD5
0300fd9a3d5521eba283db6252f8c4d0
Sha1
f3e769be9c5c426ea8f8f68238a332024798f8b0
Base64
6JiA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8600';
console.log(char);  // Output: 蘀

Java:

char c = '\u8600';
System.out.println(c);  // Output: 蘀

JSON:

{"text": "\u8600"}  // Value: 蘀

Python:

char = '\u8600'
print(char)  # Output: 蘀

Perl:

my $char = "\x{8600}";
print $char;  # Output: 蘀

PHP:

$char = "\x{8600}";
echo $char;  // Output: 蘀

Ruby:

char = "\u{8600}"
puts char  # Output: 蘀

Rust:

let c = '\u{8600}';
println!("{}", c);  // Output: 蘀

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008600";  /* Display: 蘀 */
}

HTML Decimal:

<p>HTML decimal: &#34304;</p>  <!-- Display: 蘀 -->

HTML Hexadecimal:

<p>HTML hex: &#x8600;</p>  <!-- Display: 蘀 -->

URL Encoding:

// 蘀 URL encoding
https://unicodefinder.com/search.php?query=%E8%98%80

Encodings

MD5:

0300fd9a3d5521eba283db6252f8c4d0

SHA1:

f3e769be9c5c426ea8f8f68238a332024798f8b0

Base64:

6JiA