Unicode Finder

"蓟" U+84DF(CJK UNIFIED IDEOGRAPH-84DF)

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

Programming

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

Web

CSS
\0084DF
HtmlDecimal
蓟
HtmlHexadecimal
蓟
Url
%E8%93%9F

Code

MD5
5db0dfcb04587971dbd585db678d8da3
Sha1
6601b558c1ce1093c61803a45521e12e0fee3fa3
Base64
6JOf

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u84DF';
console.log(char);  // Output: 蓟

Java:

char c = '\u84DF';
System.out.println(c);  // Output: 蓟

JSON:

{"text": "\u84DF"}  // Value: 蓟

Python:

char = '\u84DF'
print(char)  # Output: 蓟

Perl:

my $char = "\x{84DF}";
print $char;  # Output: 蓟

PHP:

$char = "\x{84DF}";
echo $char;  // Output: 蓟

Ruby:

char = "\u{84DF}"
puts char  # Output: 蓟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34015;</p>  <!-- Display: 蓟 -->

HTML Hexadecimal:

<p>HTML hex: &#x84DF;</p>  <!-- Display: 蓟 -->

URL Encoding:

// 蓟 URL encoding
https://unicodefinder.com/search.php?query=%E8%93%9F

Encodings

MD5:

5db0dfcb04587971dbd585db678d8da3

SHA1:

6601b558c1ce1093c61803a45521e12e0fee3fa3

Base64:

6JOf