Unicode Finder

"蝈" U+8748(CJK UNIFIED IDEOGRAPH-8748)

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

Programming

C
\u8748
JavaScript
\u8748
Java
\u8748
Json
\u8748
Python
\u8748
Perl
\x{8748}
PHP
\x{8748}
Ruby
\u{8748}
Rust
\u{8748}
Go
\u8748

Web

CSS
\008748
HtmlDecimal
蝈
HtmlHexadecimal
蝈
Url
%E8%9D%88

Code

MD5
78bcc972a51ec33fb89c27c787e89368
Sha1
ff3242378550456b3d2de089fc5175643c3d70c1
Base64
6J2I

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8748';
console.log(char);  // Output: 蝈

Java:

char c = '\u8748';
System.out.println(c);  // Output: 蝈

JSON:

{"text": "\u8748"}  // Value: 蝈

Python:

char = '\u8748'
print(char)  # Output: 蝈

Perl:

my $char = "\x{8748}";
print $char;  # Output: 蝈

PHP:

$char = "\x{8748}";
echo $char;  // Output: 蝈

Ruby:

char = "\u{8748}"
puts char  # Output: 蝈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008748";  /* Display: 蝈 */
}

HTML Decimal:

<p>HTML decimal: &#34632;</p>  <!-- Display: 蝈 -->

HTML Hexadecimal:

<p>HTML hex: &#x8748;</p>  <!-- Display: 蝈 -->

URL Encoding:

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

Encodings

MD5:

78bcc972a51ec33fb89c27c787e89368

SHA1:

ff3242378550456b3d2de089fc5175643c3d70c1

Base64:

6J2I