Unicode Finder

"鬩" U+9B29(CJK UNIFIED IDEOGRAPH-9B29)

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

Programming

C
\u9B29
JavaScript
\u9B29
Java
\u9B29
Json
\u9B29
Python
\u9B29
Perl
\x{9B29}
PHP
\x{9B29}
Ruby
\u{9B29}
Rust
\u{9B29}
Go
\u9B29

Web

CSS
\009B29
HtmlDecimal
鬩
HtmlHexadecimal
鬩
Url
%E9%AC%A9

Code

MD5
4929584f4396e4197567f78be693e952
Sha1
0338cc41fc98046c9a29a76e25e1088a4a01eff0
Base64
6ayp

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9B29';
console.log(char);  // Output: 鬩

Java:

char c = '\u9B29';
System.out.println(c);  // Output: 鬩

JSON:

{"text": "\u9B29"}  // Value: 鬩

Python:

char = '\u9B29'
print(char)  # Output: 鬩

Perl:

my $char = "\x{9B29}";
print $char;  # Output: 鬩

PHP:

$char = "\x{9B29}";
echo $char;  // Output: 鬩

Ruby:

char = "\u{9B29}"
puts char  # Output: 鬩

Rust:

let c = '\u{9B29}';
println!("{}", c);  // Output: 鬩

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009B29";  /* Display: 鬩 */
}

HTML Decimal:

<p>HTML decimal: &#39721;</p>  <!-- Display: 鬩 -->

HTML Hexadecimal:

<p>HTML hex: &#x9B29;</p>  <!-- Display: 鬩 -->

URL Encoding:

// 鬩 URL encoding
https://unicodefinder.com/search.php?query=%E9%AC%A9

Encodings

MD5:

4929584f4396e4197567f78be693e952

SHA1:

0338cc41fc98046c9a29a76e25e1088a4a01eff0

Base64:

6ayp