Unicode Finder

"鴜" U+9D1C(CJK UNIFIED IDEOGRAPH-9D1C)

U+9D1C
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9D1C

Programming

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

Web

CSS
\009D1C
HtmlDecimal
鴜
HtmlHexadecimal
鴜
Url
%E9%B4%9C

Code

MD5
cad2bb52e6afea72ff2fe5b5b3e7980a
Sha1
f76e12e9f41a96bb8e73e733040cce86949234e3
Base64
6bSc

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9D1C';
console.log(char);  // Output: 鴜

Java:

char c = '\u9D1C';
System.out.println(c);  // Output: 鴜

JSON:

{"text": "\u9D1C"}  // Value: 鴜

Python:

char = '\u9D1C'
print(char)  # Output: 鴜

Perl:

my $char = "\x{9D1C}";
print $char;  # Output: 鴜

PHP:

$char = "\x{9D1C}";
echo $char;  // Output: 鴜

Ruby:

char = "\u{9D1C}"
puts char  # Output: 鴜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40220;</p>  <!-- Display: 鴜 -->

HTML Hexadecimal:

<p>HTML hex: &#x9D1C;</p>  <!-- Display: 鴜 -->

URL Encoding:

// 鴜 URL encoding
https://unicodefinder.com/search.php?query=%E9%B4%9C

Encodings

MD5:

cad2bb52e6afea72ff2fe5b5b3e7980a

SHA1:

f76e12e9f41a96bb8e73e733040cce86949234e3

Base64:

6bSc