Unicode Finder

"羆" U+7F86(CJK UNIFIED IDEOGRAPH-7F86)

U+7F86
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7F86

Programming

C
\u7F86
JavaScript
\u7F86
Java
\u7F86
Json
\u7F86
Python
\u7F86
Perl
\x{7F86}
PHP
\x{7F86}
Ruby
\u{7F86}
Rust
\u{7F86}
Go
\u7F86

Web

CSS
\007F86
HtmlDecimal
羆
HtmlHexadecimal
羆
Url
%E7%BE%86

Code

MD5
26792e9ac12ef61c16d24ee9689e1e6a
Sha1
6d7b05bcd13b053976b1c356303703cfa6ba657a
Base64
576G

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7F86';
console.log(char);  // Output: 羆

Java:

char c = '\u7F86';
System.out.println(c);  // Output: 羆

JSON:

{"text": "\u7F86"}  // Value: 羆

Python:

char = '\u7F86'
print(char)  # Output: 羆

Perl:

my $char = "\x{7F86}";
print $char;  # Output: 羆

PHP:

$char = "\x{7F86}";
echo $char;  // Output: 羆

Ruby:

char = "\u{7F86}"
puts char  # Output: 羆

Rust:

let c = '\u{7F86}';
println!("{}", c);  // Output: 羆

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007F86";  /* Display: 羆 */
}

HTML Decimal:

<p>HTML decimal: &#32646;</p>  <!-- Display: 羆 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F86;</p>  <!-- Display: 羆 -->

URL Encoding:

// 羆 URL encoding
https://unicodefinder.com/search.php?query=%E7%BE%86

Encodings

MD5:

26792e9ac12ef61c16d24ee9689e1e6a

SHA1:

6d7b05bcd13b053976b1c356303703cfa6ba657a

Base64:

576G