Unicode Finder

"盓" U+76D3(CJK UNIFIED IDEOGRAPH-76D3)

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

Programming

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

Web

CSS
\0076D3
HtmlDecimal
盓
HtmlHexadecimal
盓
Url
%E7%9B%93

Code

MD5
ddbe92261a2101c2b4772768e8f0380c
Sha1
32428676d1fde73e74f4c63d4019240dfd9db871
Base64
55uT

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u76D3';
console.log(char);  // Output: 盓

Java:

char c = '\u76D3';
System.out.println(c);  // Output: 盓

JSON:

{"text": "\u76D3"}  // Value: 盓

Python:

char = '\u76D3'
print(char)  # Output: 盓

Perl:

my $char = "\x{76D3}";
print $char;  # Output: 盓

PHP:

$char = "\x{76D3}";
echo $char;  // Output: 盓

Ruby:

char = "\u{76D3}"
puts char  # Output: 盓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30419;</p>  <!-- Display: 盓 -->

HTML Hexadecimal:

<p>HTML hex: &#x76D3;</p>  <!-- Display: 盓 -->

URL Encoding:

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

Encodings

MD5:

ddbe92261a2101c2b4772768e8f0380c

SHA1:

32428676d1fde73e74f4c63d4019240dfd9db871

Base64:

55uT