Unicode Finder

"鹱" U+9E71(CJK UNIFIED IDEOGRAPH-9E71)

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

Programming

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

Web

CSS
\009E71
HtmlDecimal
鹱
HtmlHexadecimal
鹱
Url
%E9%B9%B1

Code

MD5
af30e34b4986212d9410dc921ca9f6ec
Sha1
3bad65ee8bd5fe4c1ee8d7ff292ed094c07d7d91
Base64
6bmx

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9E71';
console.log(char);  // Output: 鹱

Java:

char c = '\u9E71';
System.out.println(c);  // Output: 鹱

JSON:

{"text": "\u9E71"}  // Value: 鹱

Python:

char = '\u9E71'
print(char)  # Output: 鹱

Perl:

my $char = "\x{9E71}";
print $char;  # Output: 鹱

PHP:

$char = "\x{9E71}";
echo $char;  // Output: 鹱

Ruby:

char = "\u{9E71}"
puts char  # Output: 鹱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40561;</p>  <!-- Display: 鹱 -->

HTML Hexadecimal:

<p>HTML hex: &#x9E71;</p>  <!-- Display: 鹱 -->

URL Encoding:

// 鹱 URL encoding
https://unicodefinder.com/search.php?query=%E9%B9%B1

Encodings

MD5:

af30e34b4986212d9410dc921ca9f6ec

SHA1:

3bad65ee8bd5fe4c1ee8d7ff292ed094c07d7d91

Base64:

6bmx