Unicode Finder

"鵑" U+9D51(CJK UNIFIED IDEOGRAPH-9D51)

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

Programming

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

Web

CSS
\009D51
HtmlDecimal
鵑
HtmlHexadecimal
鵑
Url
%E9%B5%91

Code

MD5
d01d7978853f4ecb7bd38d0e4b92656b
Sha1
acee8f6262a1143eedcdf7eef1ed07745ccfad25
Base64
6bWR

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9D51';
console.log(char);  // Output: 鵑

Java:

char c = '\u9D51';
System.out.println(c);  // Output: 鵑

JSON:

{"text": "\u9D51"}  // Value: 鵑

Python:

char = '\u9D51'
print(char)  # Output: 鵑

Perl:

my $char = "\x{9D51}";
print $char;  # Output: 鵑

PHP:

$char = "\x{9D51}";
echo $char;  // Output: 鵑

Ruby:

char = "\u{9D51}"
puts char  # Output: 鵑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40273;</p>  <!-- Display: 鵑 -->

HTML Hexadecimal:

<p>HTML hex: &#x9D51;</p>  <!-- Display: 鵑 -->

URL Encoding:

// 鵑 URL encoding
https://unicodefinder.com/search.php?query=%E9%B5%91

Encodings

MD5:

d01d7978853f4ecb7bd38d0e4b92656b

SHA1:

acee8f6262a1143eedcdf7eef1ed07745ccfad25

Base64:

6bWR