Unicode Finder

"盆" U+76C6(CJK UNIFIED IDEOGRAPH-76C6)

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

Programming

C
\u76C6
JavaScript
\u76C6
Java
\u76C6
Json
\u76C6
Python
\u76C6
Perl
\x{76C6}
PHP
\x{76C6}
Ruby
\u{76C6}
Rust
\u{76C6}
Go
\u76C6

Web

CSS
\0076C6
HtmlDecimal
盆
HtmlHexadecimal
盆
Url
%E7%9B%86

Code

MD5
fd9d7ebd57ed44fe3c9473116cab79b3
Sha1
1b0970d2178ba148fc9d2503dc722b4e3da28990
Base64
55uG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u76C6';
console.log(char);  // Output: 盆

Java:

char c = '\u76C6';
System.out.println(c);  // Output: 盆

JSON:

{"text": "\u76C6"}  // Value: 盆

Python:

char = '\u76C6'
print(char)  # Output: 盆

Perl:

my $char = "\x{76C6}";
print $char;  # Output: 盆

PHP:

$char = "\x{76C6}";
echo $char;  // Output: 盆

Ruby:

char = "\u{76C6}"
puts char  # Output: 盆

Rust:

let c = '\u{76C6}';
println!("{}", c);  // Output: 盆

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0076C6";  /* Display: 盆 */
}

HTML Decimal:

<p>HTML decimal: &#30406;</p>  <!-- Display: 盆 -->

HTML Hexadecimal:

<p>HTML hex: &#x76C6;</p>  <!-- Display: 盆 -->

URL Encoding:

// 盆 URL encoding
https://unicodefinder.com/search.php?query=%E7%9B%86

Encodings

MD5:

fd9d7ebd57ed44fe3c9473116cab79b3

SHA1:

1b0970d2178ba148fc9d2503dc722b4e3da28990

Base64:

55uG