Unicode Finder

"盛" U+76DB(CJK UNIFIED IDEOGRAPH-76DB)

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

Programming

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

Web

CSS
\0076DB
HtmlDecimal
盛
HtmlHexadecimal
盛
Url
%E7%9B%9B

Code

MD5
7c7fedd2c42470f3420e6325f2ae1895
Sha1
942006d3a26dbdf2372f1da436016cfaf2d93f69
Base64
55ub

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u76DB';
console.log(char);  // Output: 盛

Java:

char c = '\u76DB';
System.out.println(c);  // Output: 盛

JSON:

{"text": "\u76DB"}  // Value: 盛

Python:

char = '\u76DB'
print(char)  # Output: 盛

Perl:

my $char = "\x{76DB}";
print $char;  # Output: 盛

PHP:

$char = "\x{76DB}";
echo $char;  // Output: 盛

Ruby:

char = "\u{76DB}"
puts char  # Output: 盛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30427;</p>  <!-- Display: 盛 -->

HTML Hexadecimal:

<p>HTML hex: &#x76DB;</p>  <!-- Display: 盛 -->

URL Encoding:

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

Encodings

MD5:

7c7fedd2c42470f3420e6325f2ae1895

SHA1:

942006d3a26dbdf2372f1da436016cfaf2d93f69

Base64:

55ub