Unicode Finder

"腡" U+8161(CJK UNIFIED IDEOGRAPH-8161)

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

Programming

C
\u8161
JavaScript
\u8161
Java
\u8161
Json
\u8161
Python
\u8161
Perl
\x{8161}
PHP
\x{8161}
Ruby
\u{8161}
Rust
\u{8161}
Go
\u8161

Web

CSS
\008161
HtmlDecimal
腡
HtmlHexadecimal
腡
Url
%E8%85%A1

Code

MD5
c90f37e3a877fbf31448c295d6a8d7eb
Sha1
49536aa12de77322cd5ce5f1d27ef7c49eff5c5e
Base64
6IWh

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8161';
console.log(char);  // Output: 腡

Java:

char c = '\u8161';
System.out.println(c);  // Output: 腡

JSON:

{"text": "\u8161"}  // Value: 腡

Python:

char = '\u8161'
print(char)  # Output: 腡

Perl:

my $char = "\x{8161}";
print $char;  # Output: 腡

PHP:

$char = "\x{8161}";
echo $char;  // Output: 腡

Ruby:

char = "\u{8161}"
puts char  # Output: 腡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008161";  /* Display: 腡 */
}

HTML Decimal:

<p>HTML decimal: &#33121;</p>  <!-- Display: 腡 -->

HTML Hexadecimal:

<p>HTML hex: &#x8161;</p>  <!-- Display: 腡 -->

URL Encoding:

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

Encodings

MD5:

c90f37e3a877fbf31448c295d6a8d7eb

SHA1:

49536aa12de77322cd5ce5f1d27ef7c49eff5c5e

Base64:

6IWh