Unicode Finder

"矋" U+77CB(CJK UNIFIED IDEOGRAPH-77CB)

U+77CB
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-77CB

Programming

C
\u77CB
JavaScript
\u77CB
Java
\u77CB
Json
\u77CB
Python
\u77CB
Perl
\x{77CB}
PHP
\x{77CB}
Ruby
\u{77CB}
Rust
\u{77CB}
Go
\u77CB

Web

CSS
\0077CB
HtmlDecimal
矋
HtmlHexadecimal
矋
Url
%E7%9F%8B

Code

MD5
7ff3d82e11fc6790ae74f3e3eff98f3e
Sha1
90d50172ea670e64b603213a393374dca914c161
Base64
55+L

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u77CB';
console.log(char);  // Output: 矋

Java:

char c = '\u77CB';
System.out.println(c);  // Output: 矋

JSON:

{"text": "\u77CB"}  // Value: 矋

Python:

char = '\u77CB'
print(char)  # Output: 矋

Perl:

my $char = "\x{77CB}";
print $char;  # Output: 矋

PHP:

$char = "\x{77CB}";
echo $char;  // Output: 矋

Ruby:

char = "\u{77CB}"
puts char  # Output: 矋

Rust:

let c = '\u{77CB}';
println!("{}", c);  // Output: 矋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0077CB";  /* Display: 矋 */
}

HTML Decimal:

<p>HTML decimal: &#30667;</p>  <!-- Display: 矋 -->

HTML Hexadecimal:

<p>HTML hex: &#x77CB;</p>  <!-- Display: 矋 -->

URL Encoding:

// 矋 URL encoding
https://unicodefinder.com/search.php?query=%E7%9F%8B

Encodings

MD5:

7ff3d82e11fc6790ae74f3e3eff98f3e

SHA1:

90d50172ea670e64b603213a393374dca914c161

Base64:

55+L