Unicode Finder

"兡" U+5161(CJK UNIFIED IDEOGRAPH-5161)

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

Programming

C
\u5161
JavaScript
\u5161
Java
\u5161
Json
\u5161
Python
\u5161
Perl
\x{5161}
PHP
\x{5161}
Ruby
\u{5161}
Rust
\u{5161}
Go
\u5161

Web

CSS
\005161
HtmlDecimal
兡
HtmlHexadecimal
兡
Url
%E5%85%A1

Code

MD5
421759886a881d0c85f5f1c478ddc8ae
Sha1
fb610dd68030b542327c7d01bd85a22359af77ca
Base64
5YWh

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5161';
console.log(char);  // Output: 兡

Java:

char c = '\u5161';
System.out.println(c);  // Output: 兡

JSON:

{"text": "\u5161"}  // Value: 兡

Python:

char = '\u5161'
print(char)  # Output: 兡

Perl:

my $char = "\x{5161}";
print $char;  # Output: 兡

PHP:

$char = "\x{5161}";
echo $char;  // Output: 兡

Ruby:

char = "\u{5161}"
puts char  # Output: 兡

Rust:

let c = '\u{5161}';
println!("{}", c);  // Output: 兡

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005161";  /* Display: 兡 */
}

HTML Decimal:

<p>HTML decimal: &#20833;</p>  <!-- Display: 兡 -->

HTML Hexadecimal:

<p>HTML hex: &#x5161;</p>  <!-- Display: 兡 -->

URL Encoding:

// 兡 URL encoding
https://unicodefinder.com/search.php?query=%E5%85%A1

Encodings

MD5:

421759886a881d0c85f5f1c478ddc8ae

SHA1:

fb610dd68030b542327c7d01bd85a22359af77ca

Base64:

5YWh