Unicode Finder

"蓑" U+84D1(CJK UNIFIED IDEOGRAPH-84D1)

U+84D1
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-84D1

Programming

C
\u84D1
JavaScript
\u84D1
Java
\u84D1
Json
\u84D1
Python
\u84D1
Perl
\x{84D1}
PHP
\x{84D1}
Ruby
\u{84D1}
Rust
\u{84D1}
Go
\u84D1

Web

CSS
\0084D1
HtmlDecimal
蓑
HtmlHexadecimal
蓑
Url
%E8%93%91

Code

MD5
eb0b3e464879159aab68ba140fbbf378
Sha1
ac9f9edd92dc3840da37c74e540dec8652f9fca7
Base64
6JOR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u84D1';
console.log(char);  // Output: 蓑

Java:

char c = '\u84D1';
System.out.println(c);  // Output: 蓑

JSON:

{"text": "\u84D1"}  // Value: 蓑

Python:

char = '\u84D1'
print(char)  # Output: 蓑

Perl:

my $char = "\x{84D1}";
print $char;  # Output: 蓑

PHP:

$char = "\x{84D1}";
echo $char;  // Output: 蓑

Ruby:

char = "\u{84D1}"
puts char  # Output: 蓑

Rust:

let c = '\u{84D1}';
println!("{}", c);  // Output: 蓑

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0084D1";  /* Display: 蓑 */
}

HTML Decimal:

<p>HTML decimal: &#34001;</p>  <!-- Display: 蓑 -->

HTML Hexadecimal:

<p>HTML hex: &#x84D1;</p>  <!-- Display: 蓑 -->

URL Encoding:

// 蓑 URL encoding
https://unicodefinder.com/search.php?query=%E8%93%91

Encodings

MD5:

eb0b3e464879159aab68ba140fbbf378

SHA1:

ac9f9edd92dc3840da37c74e540dec8652f9fca7

Base64:

6JOR