Unicode Finder

"蘙" U+8619(CJK UNIFIED IDEOGRAPH-8619)

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

Programming

C
\u8619
JavaScript
\u8619
Java
\u8619
Json
\u8619
Python
\u8619
Perl
\x{8619}
PHP
\x{8619}
Ruby
\u{8619}
Rust
\u{8619}
Go
\u8619

Web

CSS
\008619
HtmlDecimal
蘙
HtmlHexadecimal
蘙
Url
%E8%98%99

Code

MD5
32274ffddf4bf9144e27ec1f2ad62153
Sha1
d7e93f9ee78385b668a20c79dd6c42ccf66e9aa2
Base64
6JiZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8619';
console.log(char);  // Output: 蘙

Java:

char c = '\u8619';
System.out.println(c);  // Output: 蘙

JSON:

{"text": "\u8619"}  // Value: 蘙

Python:

char = '\u8619'
print(char)  # Output: 蘙

Perl:

my $char = "\x{8619}";
print $char;  # Output: 蘙

PHP:

$char = "\x{8619}";
echo $char;  // Output: 蘙

Ruby:

char = "\u{8619}"
puts char  # Output: 蘙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008619";  /* Display: 蘙 */
}

HTML Decimal:

<p>HTML decimal: &#34329;</p>  <!-- Display: 蘙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8619;</p>  <!-- Display: 蘙 -->

URL Encoding:

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

Encodings

MD5:

32274ffddf4bf9144e27ec1f2ad62153

SHA1:

d7e93f9ee78385b668a20c79dd6c42ccf66e9aa2

Base64:

6JiZ