Unicode Finder

"滂" U+6EC2(CJK UNIFIED IDEOGRAPH-6EC2)

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

Programming

C
\u6EC2
JavaScript
\u6EC2
Java
\u6EC2
Json
\u6EC2
Python
\u6EC2
Perl
\x{6EC2}
PHP
\x{6EC2}
Ruby
\u{6EC2}
Rust
\u{6EC2}
Go
\u6EC2

Web

CSS
\006EC2
HtmlDecimal
滂
HtmlHexadecimal
滂
Url
%E6%BB%82

Code

MD5
15816595d3ac4fbe6abe55b3640c7b11
Sha1
0d8dc7412b25cb1d245c06bc9384a10a8ac973a4
Base64
5ruC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6EC2';
console.log(char);  // Output: 滂

Java:

char c = '\u6EC2';
System.out.println(c);  // Output: 滂

JSON:

{"text": "\u6EC2"}  // Value: 滂

Python:

char = '\u6EC2'
print(char)  # Output: 滂

Perl:

my $char = "\x{6EC2}";
print $char;  # Output: 滂

PHP:

$char = "\x{6EC2}";
echo $char;  // Output: 滂

Ruby:

char = "\u{6EC2}"
puts char  # Output: 滂

Rust:

let c = '\u{6EC2}';
println!("{}", c);  // Output: 滂

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006EC2";  /* Display: 滂 */
}

HTML Decimal:

<p>HTML decimal: &#28354;</p>  <!-- Display: 滂 -->

HTML Hexadecimal:

<p>HTML hex: &#x6EC2;</p>  <!-- Display: 滂 -->

URL Encoding:

// 滂 URL encoding
https://unicodefinder.com/search.php?query=%E6%BB%82

Encodings

MD5:

15816595d3ac4fbe6abe55b3640c7b11

SHA1:

0d8dc7412b25cb1d245c06bc9384a10a8ac973a4

Base64:

5ruC