Unicode Finder

"笌" U+7B0C(CJK UNIFIED IDEOGRAPH-7B0C)

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

Programming

C
\u7B0C
JavaScript
\u7B0C
Java
\u7B0C
Json
\u7B0C
Python
\u7B0C
Perl
\x{7B0C}
PHP
\x{7B0C}
Ruby
\u{7B0C}
Rust
\u{7B0C}
Go
\u7B0C

Web

CSS
\007B0C
HtmlDecimal
笌
HtmlHexadecimal
笌
Url
%E7%AC%8C

Code

MD5
3b9cd6414af0571d981f7a90b0732fe8
Sha1
7d12b6104dbe8e94f9827f8dfd0a3b15e3ab7626
Base64
56yM

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7B0C';
console.log(char);  // Output: 笌

Java:

char c = '\u7B0C';
System.out.println(c);  // Output: 笌

JSON:

{"text": "\u7B0C"}  // Value: 笌

Python:

char = '\u7B0C'
print(char)  # Output: 笌

Perl:

my $char = "\x{7B0C}";
print $char;  # Output: 笌

PHP:

$char = "\x{7B0C}";
echo $char;  // Output: 笌

Ruby:

char = "\u{7B0C}"
puts char  # Output: 笌

Rust:

let c = '\u{7B0C}';
println!("{}", c);  // Output: 笌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007B0C";  /* Display: 笌 */
}

HTML Decimal:

<p>HTML decimal: &#31500;</p>  <!-- Display: 笌 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B0C;</p>  <!-- Display: 笌 -->

URL Encoding:

// 笌 URL encoding
https://unicodefinder.com/search.php?query=%E7%AC%8C

Encodings

MD5:

3b9cd6414af0571d981f7a90b0732fe8

SHA1:

7d12b6104dbe8e94f9827f8dfd0a3b15e3ab7626

Base64:

56yM