Unicode Finder

"羁" U+7F81(CJK UNIFIED IDEOGRAPH-7F81)

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

Programming

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

Web

CSS
\007F81
HtmlDecimal
羁
HtmlHexadecimal
羁
Url
%E7%BE%81

Code

MD5
29cfcb2cf9990e7a2cc8167f67dd16d3
Sha1
80bf4ed0ee4d23a9dd98ef8be3af6965f6cd2b8f
Base64
576B

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7F81';
console.log(char);  // Output: 羁

Java:

char c = '\u7F81';
System.out.println(c);  // Output: 羁

JSON:

{"text": "\u7F81"}  // Value: 羁

Python:

char = '\u7F81'
print(char)  # Output: 羁

Perl:

my $char = "\x{7F81}";
print $char;  # Output: 羁

PHP:

$char = "\x{7F81}";
echo $char;  // Output: 羁

Ruby:

char = "\u{7F81}"
puts char  # Output: 羁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32641;</p>  <!-- Display: 羁 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F81;</p>  <!-- Display: 羁 -->

URL Encoding:

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

Encodings

MD5:

29cfcb2cf9990e7a2cc8167f67dd16d3

SHA1:

80bf4ed0ee4d23a9dd98ef8be3af6965f6cd2b8f

Base64:

576B