Unicode Finder

"盕" U+76D5(CJK UNIFIED IDEOGRAPH-76D5)

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

Programming

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

Web

CSS
\0076D5
HtmlDecimal
盕
HtmlHexadecimal
盕
Url
%E7%9B%95

Code

MD5
51bf94965ce25223a966dc3c179d7fa7
Sha1
7f4fb66d9295f46ea20b095aca2a00daed4d3f7a
Base64
55uV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u76D5';
console.log(char);  // Output: 盕

Java:

char c = '\u76D5';
System.out.println(c);  // Output: 盕

JSON:

{"text": "\u76D5"}  // Value: 盕

Python:

char = '\u76D5'
print(char)  # Output: 盕

Perl:

my $char = "\x{76D5}";
print $char;  # Output: 盕

PHP:

$char = "\x{76D5}";
echo $char;  // Output: 盕

Ruby:

char = "\u{76D5}"
puts char  # Output: 盕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30421;</p>  <!-- Display: 盕 -->

HTML Hexadecimal:

<p>HTML hex: &#x76D5;</p>  <!-- Display: 盕 -->

URL Encoding:

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

Encodings

MD5:

51bf94965ce25223a966dc3c179d7fa7

SHA1:

7f4fb66d9295f46ea20b095aca2a00daed4d3f7a

Base64:

55uV