Unicode Finder

"鳟" U+9CDF(CJK UNIFIED IDEOGRAPH-9CDF)

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

Programming

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

Web

CSS
\009CDF
HtmlDecimal
鳟
HtmlHexadecimal
鳟
Url
%E9%B3%9F

Code

MD5
045683e4bb0f039795a57ddbea425de1
Sha1
b0cd8fef0998c51a2a256a936e2989009ee7c3c5
Base64
6bOf

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9CDF';
console.log(char);  // Output: 鳟

Java:

char c = '\u9CDF';
System.out.println(c);  // Output: 鳟

JSON:

{"text": "\u9CDF"}  // Value: 鳟

Python:

char = '\u9CDF'
print(char)  # Output: 鳟

Perl:

my $char = "\x{9CDF}";
print $char;  # Output: 鳟

PHP:

$char = "\x{9CDF}";
echo $char;  // Output: 鳟

Ruby:

char = "\u{9CDF}"
puts char  # Output: 鳟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40159;</p>  <!-- Display: 鳟 -->

HTML Hexadecimal:

<p>HTML hex: &#x9CDF;</p>  <!-- Display: 鳟 -->

URL Encoding:

// 鳟 URL encoding
https://unicodefinder.com/search.php?query=%E9%B3%9F

Encodings

MD5:

045683e4bb0f039795a57ddbea425de1

SHA1:

b0cd8fef0998c51a2a256a936e2989009ee7c3c5

Base64:

6bOf