Unicode Finder

"芄" U+8284(CJK UNIFIED IDEOGRAPH-8284)

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

Programming

C
\u8284
JavaScript
\u8284
Java
\u8284
Json
\u8284
Python
\u8284
Perl
\x{8284}
PHP
\x{8284}
Ruby
\u{8284}
Rust
\u{8284}
Go
\u8284

Web

CSS
\008284
HtmlDecimal
芄
HtmlHexadecimal
芄
Url
%E8%8A%84

Code

MD5
e733082221381f318a7419e9e494b9b0
Sha1
f6800e991e9dc61bfe123d3c0f3683bed6f7a41c
Base64
6IqE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8284';
console.log(char);  // Output: 芄

Java:

char c = '\u8284';
System.out.println(c);  // Output: 芄

JSON:

{"text": "\u8284"}  // Value: 芄

Python:

char = '\u8284'
print(char)  # Output: 芄

Perl:

my $char = "\x{8284}";
print $char;  # Output: 芄

PHP:

$char = "\x{8284}";
echo $char;  // Output: 芄

Ruby:

char = "\u{8284}"
puts char  # Output: 芄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008284";  /* Display: 芄 */
}

HTML Decimal:

<p>HTML decimal: &#33412;</p>  <!-- Display: 芄 -->

HTML Hexadecimal:

<p>HTML hex: &#x8284;</p>  <!-- Display: 芄 -->

URL Encoding:

// 芄 URL encoding
https://unicodefinder.com/search.php?query=%E8%8A%84

Encodings

MD5:

e733082221381f318a7419e9e494b9b0

SHA1:

f6800e991e9dc61bfe123d3c0f3683bed6f7a41c

Base64:

6IqE