Unicode Finder

"蜣" U+8723(CJK UNIFIED IDEOGRAPH-8723)

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

Programming

C
\u8723
JavaScript
\u8723
Java
\u8723
Json
\u8723
Python
\u8723
Perl
\x{8723}
PHP
\x{8723}
Ruby
\u{8723}
Rust
\u{8723}
Go
\u8723

Web

CSS
\008723
HtmlDecimal
蜣
HtmlHexadecimal
蜣
Url
%E8%9C%A3

Code

MD5
a5f5b2ef63246940d78c202af21ed7f8
Sha1
814a93eaecbebe993a68cc09e1ce6d2f689d3f1c
Base64
6Jyj

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8723';
console.log(char);  // Output: 蜣

Java:

char c = '\u8723';
System.out.println(c);  // Output: 蜣

JSON:

{"text": "\u8723"}  // Value: 蜣

Python:

char = '\u8723'
print(char)  # Output: 蜣

Perl:

my $char = "\x{8723}";
print $char;  # Output: 蜣

PHP:

$char = "\x{8723}";
echo $char;  // Output: 蜣

Ruby:

char = "\u{8723}"
puts char  # Output: 蜣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008723";  /* Display: 蜣 */
}

HTML Decimal:

<p>HTML decimal: &#34595;</p>  <!-- Display: 蜣 -->

HTML Hexadecimal:

<p>HTML hex: &#x8723;</p>  <!-- Display: 蜣 -->

URL Encoding:

// 蜣 URL encoding
https://unicodefinder.com/search.php?query=%E8%9C%A3

Encodings

MD5:

a5f5b2ef63246940d78c202af21ed7f8

SHA1:

814a93eaecbebe993a68cc09e1ce6d2f689d3f1c

Base64:

6Jyj