Unicode Finder

"盏" U+76CF(CJK UNIFIED IDEOGRAPH-76CF)

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

Programming

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

Web

CSS
\0076CF
HtmlDecimal
盏
HtmlHexadecimal
盏
Url
%E7%9B%8F

Code

MD5
5c64e11d6b18812a36111823d0b34cf3
Sha1
5467a99646fe550bff3977820cad82206866a7ed
Base64
55uP

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u76CF';
console.log(char);  // Output: 盏

Java:

char c = '\u76CF';
System.out.println(c);  // Output: 盏

JSON:

{"text": "\u76CF"}  // Value: 盏

Python:

char = '\u76CF'
print(char)  # Output: 盏

Perl:

my $char = "\x{76CF}";
print $char;  # Output: 盏

PHP:

$char = "\x{76CF}";
echo $char;  // Output: 盏

Ruby:

char = "\u{76CF}"
puts char  # Output: 盏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30415;</p>  <!-- Display: 盏 -->

HTML Hexadecimal:

<p>HTML hex: &#x76CF;</p>  <!-- Display: 盏 -->

URL Encoding:

// 盏 URL encoding
https://unicodefinder.com/search.php?query=%E7%9B%8F

Encodings

MD5:

5c64e11d6b18812a36111823d0b34cf3

SHA1:

5467a99646fe550bff3977820cad82206866a7ed

Base64:

55uP