Unicode Finder

"羑" U+7F91(CJK UNIFIED IDEOGRAPH-7F91)

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

Programming

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

Web

CSS
\007F91
HtmlDecimal
羑
HtmlHexadecimal
羑
Url
%E7%BE%91

Code

MD5
37d083793a0c9f518ce6b10250c21fb8
Sha1
860491284e0bb43b21306ff986fac4e3726ca181
Base64
576R

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7F91';
console.log(char);  // Output: 羑

Java:

char c = '\u7F91';
System.out.println(c);  // Output: 羑

JSON:

{"text": "\u7F91"}  // Value: 羑

Python:

char = '\u7F91'
print(char)  # Output: 羑

Perl:

my $char = "\x{7F91}";
print $char;  # Output: 羑

PHP:

$char = "\x{7F91}";
echo $char;  // Output: 羑

Ruby:

char = "\u{7F91}"
puts char  # Output: 羑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32657;</p>  <!-- Display: 羑 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F91;</p>  <!-- Display: 羑 -->

URL Encoding:

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

Encodings

MD5:

37d083793a0c9f518ce6b10250c21fb8

SHA1:

860491284e0bb43b21306ff986fac4e3726ca181

Base64:

576R