Unicode Finder

"鶒" U+9D92(CJK UNIFIED IDEOGRAPH-9D92)

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

Programming

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

Web

CSS
\009D92
HtmlDecimal
鶒
HtmlHexadecimal
鶒
Url
%E9%B6%92

Code

MD5
17f80d685633ab573841a3706475d0d7
Sha1
532eb0769cc5ebda6e01cb718d4fd8485f9bb8ea
Base64
6baS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9D92';
console.log(char);  // Output: 鶒

Java:

char c = '\u9D92';
System.out.println(c);  // Output: 鶒

JSON:

{"text": "\u9D92"}  // Value: 鶒

Python:

char = '\u9D92'
print(char)  # Output: 鶒

Perl:

my $char = "\x{9D92}";
print $char;  # Output: 鶒

PHP:

$char = "\x{9D92}";
echo $char;  // Output: 鶒

Ruby:

char = "\u{9D92}"
puts char  # Output: 鶒

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40338;</p>  <!-- Display: 鶒 -->

HTML Hexadecimal:

<p>HTML hex: &#x9D92;</p>  <!-- Display: 鶒 -->

URL Encoding:

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

Encodings

MD5:

17f80d685633ab573841a3706475d0d7

SHA1:

532eb0769cc5ebda6e01cb718d4fd8485f9bb8ea

Base64:

6baS