Unicode Finder

"盰" U+76F0(CJK UNIFIED IDEOGRAPH-76F0)

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

Programming

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

Web

CSS
\0076F0
HtmlDecimal
盰
HtmlHexadecimal
盰
Url
%E7%9B%B0

Code

MD5
a51aa0016c24c5b76c7db81e96d320c7
Sha1
3daeac9bd1b841ccf0f5ab2a088cebdd2cd4f114
Base64
55uw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u76F0';
console.log(char);  // Output: 盰

Java:

char c = '\u76F0';
System.out.println(c);  // Output: 盰

JSON:

{"text": "\u76F0"}  // Value: 盰

Python:

char = '\u76F0'
print(char)  # Output: 盰

Perl:

my $char = "\x{76F0}";
print $char;  # Output: 盰

PHP:

$char = "\x{76F0}";
echo $char;  // Output: 盰

Ruby:

char = "\u{76F0}"
puts char  # Output: 盰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30448;</p>  <!-- Display: 盰 -->

HTML Hexadecimal:

<p>HTML hex: &#x76F0;</p>  <!-- Display: 盰 -->

URL Encoding:

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

Encodings

MD5:

a51aa0016c24c5b76c7db81e96d320c7

SHA1:

3daeac9bd1b841ccf0f5ab2a088cebdd2cd4f114

Base64:

55uw