Unicode Finder

"矱" U+77F1(CJK UNIFIED IDEOGRAPH-77F1)

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

Programming

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

Web

CSS
\0077F1
HtmlDecimal
矱
HtmlHexadecimal
矱
Url
%E7%9F%B1

Code

MD5
050718cf09add8bbfd42e99a6830716e
Sha1
35ebfa5a4439fd37ec7f7f698719b88f161bfa9f
Base64
55+x

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u77F1';
console.log(char);  // Output: 矱

Java:

char c = '\u77F1';
System.out.println(c);  // Output: 矱

JSON:

{"text": "\u77F1"}  // Value: 矱

Python:

char = '\u77F1'
print(char)  # Output: 矱

Perl:

my $char = "\x{77F1}";
print $char;  # Output: 矱

PHP:

$char = "\x{77F1}";
echo $char;  // Output: 矱

Ruby:

char = "\u{77F1}"
puts char  # Output: 矱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30705;</p>  <!-- Display: 矱 -->

HTML Hexadecimal:

<p>HTML hex: &#x77F1;</p>  <!-- Display: 矱 -->

URL Encoding:

// 矱 URL encoding
https://unicodefinder.com/search.php?query=%E7%9F%B1

Encodings

MD5:

050718cf09add8bbfd42e99a6830716e

SHA1:

35ebfa5a4439fd37ec7f7f698719b88f161bfa9f

Base64:

55+x