Unicode Finder

"蘢" U+8622(CJK UNIFIED IDEOGRAPH-8622)

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

Programming

C
\u8622
JavaScript
\u8622
Java
\u8622
Json
\u8622
Python
\u8622
Perl
\x{8622}
PHP
\x{8622}
Ruby
\u{8622}
Rust
\u{8622}
Go
\u8622

Web

CSS
\008622
HtmlDecimal
蘢
HtmlHexadecimal
蘢
Url
%E8%98%A2

Code

MD5
8ca86acc6ac6d82fd5ea9fb0ee34f6ec
Sha1
9085b78ebd1a8f01b227239bdd8f301b7312dee0
Base64
6Jii

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8622';
console.log(char);  // Output: 蘢

Java:

char c = '\u8622';
System.out.println(c);  // Output: 蘢

JSON:

{"text": "\u8622"}  // Value: 蘢

Python:

char = '\u8622'
print(char)  # Output: 蘢

Perl:

my $char = "\x{8622}";
print $char;  # Output: 蘢

PHP:

$char = "\x{8622}";
echo $char;  // Output: 蘢

Ruby:

char = "\u{8622}"
puts char  # Output: 蘢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008622";  /* Display: 蘢 */
}

HTML Decimal:

<p>HTML decimal: &#34338;</p>  <!-- Display: 蘢 -->

HTML Hexadecimal:

<p>HTML hex: &#x8622;</p>  <!-- Display: 蘢 -->

URL Encoding:

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

Encodings

MD5:

8ca86acc6ac6d82fd5ea9fb0ee34f6ec

SHA1:

9085b78ebd1a8f01b227239bdd8f301b7312dee0

Base64:

6Jii