Unicode Finder

"鵳" U+9D73(CJK UNIFIED IDEOGRAPH-9D73)

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

Programming

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

Web

CSS
\009D73
HtmlDecimal
鵳
HtmlHexadecimal
鵳
Url
%E9%B5%B3

Code

MD5
107e68e4a0407bfcde45f923d1b1f6a0
Sha1
0adfeb1c1e57daf7970bcbd03d96fd7ef77b3842
Base64
6bWz

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9D73';
console.log(char);  // Output: 鵳

Java:

char c = '\u9D73';
System.out.println(c);  // Output: 鵳

JSON:

{"text": "\u9D73"}  // Value: 鵳

Python:

char = '\u9D73'
print(char)  # Output: 鵳

Perl:

my $char = "\x{9D73}";
print $char;  # Output: 鵳

PHP:

$char = "\x{9D73}";
echo $char;  // Output: 鵳

Ruby:

char = "\u{9D73}"
puts char  # Output: 鵳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40307;</p>  <!-- Display: 鵳 -->

HTML Hexadecimal:

<p>HTML hex: &#x9D73;</p>  <!-- Display: 鵳 -->

URL Encoding:

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

Encodings

MD5:

107e68e4a0407bfcde45f923d1b1f6a0

SHA1:

0adfeb1c1e57daf7970bcbd03d96fd7ef77b3842

Base64:

6bWz