Unicode Finder

"蘅" U+8605(CJK UNIFIED IDEOGRAPH-8605)

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

Programming

C
\u8605
JavaScript
\u8605
Java
\u8605
Json
\u8605
Python
\u8605
Perl
\x{8605}
PHP
\x{8605}
Ruby
\u{8605}
Rust
\u{8605}
Go
\u8605

Web

CSS
\008605
HtmlDecimal
蘅
HtmlHexadecimal
蘅
Url
%E8%98%85

Code

MD5
f621db3439a3210e75d63071670211a9
Sha1
5faa133f2ab7ed47bcd2662522af32f030172261
Base64
6JiF

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8605';
console.log(char);  // Output: 蘅

Java:

char c = '\u8605';
System.out.println(c);  // Output: 蘅

JSON:

{"text": "\u8605"}  // Value: 蘅

Python:

char = '\u8605'
print(char)  # Output: 蘅

Perl:

my $char = "\x{8605}";
print $char;  # Output: 蘅

PHP:

$char = "\x{8605}";
echo $char;  // Output: 蘅

Ruby:

char = "\u{8605}"
puts char  # Output: 蘅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008605";  /* Display: 蘅 */
}

HTML Decimal:

<p>HTML decimal: &#34309;</p>  <!-- Display: 蘅 -->

HTML Hexadecimal:

<p>HTML hex: &#x8605;</p>  <!-- Display: 蘅 -->

URL Encoding:

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

Encodings

MD5:

f621db3439a3210e75d63071670211a9

SHA1:

5faa133f2ab7ed47bcd2662522af32f030172261

Base64:

6JiF