Unicode Finder

"蓖" U+84D6(CJK UNIFIED IDEOGRAPH-84D6)

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

Programming

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

Web

CSS
\0084D6
HtmlDecimal
蓖
HtmlHexadecimal
蓖
Url
%E8%93%96

Code

MD5
c201c411a9b8dec5aa30ddfc2c5b01dc
Sha1
e5c2e13c92b5295ac141197636f6514861396938
Base64
6JOW

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u84D6';
console.log(char);  // Output: 蓖

Java:

char c = '\u84D6';
System.out.println(c);  // Output: 蓖

JSON:

{"text": "\u84D6"}  // Value: 蓖

Python:

char = '\u84D6'
print(char)  # Output: 蓖

Perl:

my $char = "\x{84D6}";
print $char;  # Output: 蓖

PHP:

$char = "\x{84D6}";
echo $char;  // Output: 蓖

Ruby:

char = "\u{84D6}"
puts char  # Output: 蓖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34006;</p>  <!-- Display: 蓖 -->

HTML Hexadecimal:

<p>HTML hex: &#x84D6;</p>  <!-- Display: 蓖 -->

URL Encoding:

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

Encodings

MD5:

c201c411a9b8dec5aa30ddfc2c5b01dc

SHA1:

e5c2e13c92b5295ac141197636f6514861396938

Base64:

6JOW