Unicode Finder

"鮭" U+9BAD(CJK UNIFIED IDEOGRAPH-9BAD)

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

Programming

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

Web

CSS
\009BAD
HtmlDecimal
鮭
HtmlHexadecimal
鮭
Url
%E9%AE%AD

Code

MD5
7c77d6f571aa444c80a3b75c84d18cec
Sha1
03647f07d3434ae4f6d0705c61a0b3cbd6bc1815
Base64
6a6t

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9BAD';
console.log(char);  // Output: 鮭

Java:

char c = '\u9BAD';
System.out.println(c);  // Output: 鮭

JSON:

{"text": "\u9BAD"}  // Value: 鮭

Python:

char = '\u9BAD'
print(char)  # Output: 鮭

Perl:

my $char = "\x{9BAD}";
print $char;  # Output: 鮭

PHP:

$char = "\x{9BAD}";
echo $char;  // Output: 鮭

Ruby:

char = "\u{9BAD}"
puts char  # Output: 鮭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39853;</p>  <!-- Display: 鮭 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BAD;</p>  <!-- Display: 鮭 -->

URL Encoding:

// 鮭 URL encoding
https://unicodefinder.com/search.php?query=%E9%AE%AD

Encodings

MD5:

7c77d6f571aa444c80a3b75c84d18cec

SHA1:

03647f07d3434ae4f6d0705c61a0b3cbd6bc1815

Base64:

6a6t