Unicode Finder

"魷" U+9B77(CJK UNIFIED IDEOGRAPH-9B77)

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

Programming

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

Web

CSS
\009B77
HtmlDecimal
魷
HtmlHexadecimal
魷
Url
%E9%AD%B7

Code

MD5
f9498de85a21df20f117813c079b3545
Sha1
6475afc384163ffc7d3dfca8e67231dd43e81bbb
Base64
6a23

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9B77';
console.log(char);  // Output: 魷

Java:

char c = '\u9B77';
System.out.println(c);  // Output: 魷

JSON:

{"text": "\u9B77"}  // Value: 魷

Python:

char = '\u9B77'
print(char)  # Output: 魷

Perl:

my $char = "\x{9B77}";
print $char;  # Output: 魷

PHP:

$char = "\x{9B77}";
echo $char;  // Output: 魷

Ruby:

char = "\u{9B77}"
puts char  # Output: 魷

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39799;</p>  <!-- Display: 魷 -->

HTML Hexadecimal:

<p>HTML hex: &#x9B77;</p>  <!-- Display: 魷 -->

URL Encoding:

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

Encodings

MD5:

f9498de85a21df20f117813c079b3545

SHA1:

6475afc384163ffc7d3dfca8e67231dd43e81bbb

Base64:

6a23