Unicode Finder

"鶓" U+9D93(CJK UNIFIED IDEOGRAPH-9D93)

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

Programming

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

Web

CSS
\009D93
HtmlDecimal
鶓
HtmlHexadecimal
鶓
Url
%E9%B6%93

Code

MD5
455a1374508bd0982b9c0d9400d8526b
Sha1
c9019aee65214740af4604a01553ce280b7dd23e
Base64
6baT

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9D93';
console.log(char);  // Output: 鶓

Java:

char c = '\u9D93';
System.out.println(c);  // Output: 鶓

JSON:

{"text": "\u9D93"}  // Value: 鶓

Python:

char = '\u9D93'
print(char)  # Output: 鶓

Perl:

my $char = "\x{9D93}";
print $char;  # Output: 鶓

PHP:

$char = "\x{9D93}";
echo $char;  // Output: 鶓

Ruby:

char = "\u{9D93}"
puts char  # Output: 鶓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40339;</p>  <!-- Display: 鶓 -->

HTML Hexadecimal:

<p>HTML hex: &#x9D93;</p>  <!-- Display: 鶓 -->

URL Encoding:

// 鶓 URL encoding
https://unicodefinder.com/search.php?query=%E9%B6%93

Encodings

MD5:

455a1374508bd0982b9c0d9400d8526b

SHA1:

c9019aee65214740af4604a01553ce280b7dd23e

Base64:

6baT