Unicode Finder

"蝳" U+8773(CJK UNIFIED IDEOGRAPH-8773)

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

Programming

C
\u8773
JavaScript
\u8773
Java
\u8773
Json
\u8773
Python
\u8773
Perl
\x{8773}
PHP
\x{8773}
Ruby
\u{8773}
Rust
\u{8773}
Go
\u8773

Web

CSS
\008773
HtmlDecimal
蝳
HtmlHexadecimal
蝳
Url
%E8%9D%B3

Code

MD5
6802f98d465ffa84090193f4ab196e1e
Sha1
faa6c41a751c1338420b31c508ffec27a14f2d16
Base64
6J2z

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8773';
console.log(char);  // Output: 蝳

Java:

char c = '\u8773';
System.out.println(c);  // Output: 蝳

JSON:

{"text": "\u8773"}  // Value: 蝳

Python:

char = '\u8773'
print(char)  # Output: 蝳

Perl:

my $char = "\x{8773}";
print $char;  # Output: 蝳

PHP:

$char = "\x{8773}";
echo $char;  // Output: 蝳

Ruby:

char = "\u{8773}"
puts char  # Output: 蝳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008773";  /* Display: 蝳 */
}

HTML Decimal:

<p>HTML decimal: &#34675;</p>  <!-- Display: 蝳 -->

HTML Hexadecimal:

<p>HTML hex: &#x8773;</p>  <!-- Display: 蝳 -->

URL Encoding:

// 蝳 URL encoding
https://unicodefinder.com/search.php?query=%E8%9D%B3

Encodings

MD5:

6802f98d465ffa84090193f4ab196e1e

SHA1:

faa6c41a751c1338420b31c508ffec27a14f2d16

Base64:

6J2z