Unicode Finder

"盷" U+76F7(CJK UNIFIED IDEOGRAPH-76F7)

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

Programming

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

Web

CSS
\0076F7
HtmlDecimal
盷
HtmlHexadecimal
盷
Url
%E7%9B%B7

Code

MD5
8f1616b8f6282304d5f132ba364721b4
Sha1
7207f38c85a6389f73ff2c593d8af00398833688
Base64
55u3

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u76F7';
console.log(char);  // Output: 盷

Java:

char c = '\u76F7';
System.out.println(c);  // Output: 盷

JSON:

{"text": "\u76F7"}  // Value: 盷

Python:

char = '\u76F7'
print(char)  # Output: 盷

Perl:

my $char = "\x{76F7}";
print $char;  # Output: 盷

PHP:

$char = "\x{76F7}";
echo $char;  // Output: 盷

Ruby:

char = "\u{76F7}"
puts char  # Output: 盷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30455;</p>  <!-- Display: 盷 -->

HTML Hexadecimal:

<p>HTML hex: &#x76F7;</p>  <!-- Display: 盷 -->

URL Encoding:

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

Encodings

MD5:

8f1616b8f6282304d5f132ba364721b4

SHA1:

7207f38c85a6389f73ff2c593d8af00398833688

Base64:

55u3