Unicode Finder

"盻" U+76FB(CJK UNIFIED IDEOGRAPH-76FB)

U+76FB
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-76FB

Programming

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

Web

CSS
\0076FB
HtmlDecimal
盻
HtmlHexadecimal
盻
Url
%E7%9B%BB

Code

MD5
0094dc6a8e23509566fab976511abb10
Sha1
ef00f9b0e9a22067331183c571086e1ccde05ba4
Base64
55u7

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u76FB';
console.log(char);  // Output: 盻

Java:

char c = '\u76FB';
System.out.println(c);  // Output: 盻

JSON:

{"text": "\u76FB"}  // Value: 盻

Python:

char = '\u76FB'
print(char)  # Output: 盻

Perl:

my $char = "\x{76FB}";
print $char;  # Output: 盻

PHP:

$char = "\x{76FB}";
echo $char;  // Output: 盻

Ruby:

char = "\u{76FB}"
puts char  # Output: 盻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30459;</p>  <!-- Display: 盻 -->

HTML Hexadecimal:

<p>HTML hex: &#x76FB;</p>  <!-- Display: 盻 -->

URL Encoding:

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

Encodings

MD5:

0094dc6a8e23509566fab976511abb10

SHA1:

ef00f9b0e9a22067331183c571086e1ccde05ba4

Base64:

55u7