Unicode Finder

"盹" U+76F9(CJK UNIFIED IDEOGRAPH-76F9)

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

Programming

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

Web

CSS
\0076F9
HtmlDecimal
盹
HtmlHexadecimal
盹
Url
%E7%9B%B9

Code

MD5
fad759bfb724d7cff43e7b0e35773f3d
Sha1
b2e993fb9a201e079d60de76b027d9c198b499fb
Base64
55u5

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u76F9';
console.log(char);  // Output: 盹

Java:

char c = '\u76F9';
System.out.println(c);  // Output: 盹

JSON:

{"text": "\u76F9"}  // Value: 盹

Python:

char = '\u76F9'
print(char)  # Output: 盹

Perl:

my $char = "\x{76F9}";
print $char;  # Output: 盹

PHP:

$char = "\x{76F9}";
echo $char;  // Output: 盹

Ruby:

char = "\u{76F9}"
puts char  # Output: 盹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30457;</p>  <!-- Display: 盹 -->

HTML Hexadecimal:

<p>HTML hex: &#x76F9;</p>  <!-- Display: 盹 -->

URL Encoding:

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

Encodings

MD5:

fad759bfb724d7cff43e7b0e35773f3d

SHA1:

b2e993fb9a201e079d60de76b027d9c198b499fb

Base64:

55u5