Unicode Finder

"鷫" U+9DEB(CJK UNIFIED IDEOGRAPH-9DEB)

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

Programming

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

Web

CSS
\009DEB
HtmlDecimal
鷫
HtmlHexadecimal
鷫
Url
%E9%B7%AB

Code

MD5
3c9fe0c18e4ee4e2bc56eb69b9598054
Sha1
26a386cfe4e954f4be1aab5e703483ebf523d0bf
Base64
6ber

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9DEB';
console.log(char);  // Output: 鷫

Java:

char c = '\u9DEB';
System.out.println(c);  // Output: 鷫

JSON:

{"text": "\u9DEB"}  // Value: 鷫

Python:

char = '\u9DEB'
print(char)  # Output: 鷫

Perl:

my $char = "\x{9DEB}";
print $char;  # Output: 鷫

PHP:

$char = "\x{9DEB}";
echo $char;  // Output: 鷫

Ruby:

char = "\u{9DEB}"
puts char  # Output: 鷫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40427;</p>  <!-- Display: 鷫 -->

HTML Hexadecimal:

<p>HTML hex: &#x9DEB;</p>  <!-- Display: 鷫 -->

URL Encoding:

// 鷫 URL encoding
https://unicodefinder.com/search.php?query=%E9%B7%AB

Encodings

MD5:

3c9fe0c18e4ee4e2bc56eb69b9598054

SHA1:

26a386cfe4e954f4be1aab5e703483ebf523d0bf

Base64:

6ber