Unicode Finder

"羀" U+7F80(CJK UNIFIED IDEOGRAPH-7F80)

U+7F80
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-7F80

Programming

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

Web

CSS
\007F80
HtmlDecimal
羀
HtmlHexadecimal
羀
Url
%E7%BE%80

Code

MD5
682b8e05f61e7f13f8327f281e3c859e
Sha1
177140fbf461661c951178f156c7e3444d5d0216
Base64
576A

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7F80';
console.log(char);  // Output: 羀

Java:

char c = '\u7F80';
System.out.println(c);  // Output: 羀

JSON:

{"text": "\u7F80"}  // Value: 羀

Python:

char = '\u7F80'
print(char)  # Output: 羀

Perl:

my $char = "\x{7F80}";
print $char;  # Output: 羀

PHP:

$char = "\x{7F80}";
echo $char;  // Output: 羀

Ruby:

char = "\u{7F80}"
puts char  # Output: 羀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32640;</p>  <!-- Display: 羀 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F80;</p>  <!-- Display: 羀 -->

URL Encoding:

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

Encodings

MD5:

682b8e05f61e7f13f8327f281e3c859e

SHA1:

177140fbf461661c951178f156c7e3444d5d0216

Base64:

576A