Unicode Finder

"餛" U+991B(CJK UNIFIED IDEOGRAPH-991B)

U+991B
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-991B

Programming

C
\u991B
JavaScript
\u991B
Java
\u991B
Json
\u991B
Python
\u991B
Perl
\x{991B}
PHP
\x{991B}
Ruby
\u{991B}
Rust
\u{991B}
Go
\u991B

Web

CSS
\00991B
HtmlDecimal
餛
HtmlHexadecimal
餛
Url
%E9%A4%9B

Code

MD5
3bbae6f6badba432a9bf0aa7d3df0cc2
Sha1
be6d46c3d98c9b384cdd7345003c1405c3938ca7
Base64
6aSb

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u991B';
console.log(char);  // Output: 餛

Java:

char c = '\u991B';
System.out.println(c);  // Output: 餛

JSON:

{"text": "\u991B"}  // Value: 餛

Python:

char = '\u991B'
print(char)  # Output: 餛

Perl:

my $char = "\x{991B}";
print $char;  # Output: 餛

PHP:

$char = "\x{991B}";
echo $char;  // Output: 餛

Ruby:

char = "\u{991B}"
puts char  # Output: 餛

Rust:

let c = '\u{991B}';
println!("{}", c);  // Output: 餛

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00991B";  /* Display: 餛 */
}

HTML Decimal:

<p>HTML decimal: &#39195;</p>  <!-- Display: 餛 -->

HTML Hexadecimal:

<p>HTML hex: &#x991B;</p>  <!-- Display: 餛 -->

URL Encoding:

// 餛 URL encoding
https://unicodefinder.com/search.php?query=%E9%A4%9B

Encodings

MD5:

3bbae6f6badba432a9bf0aa7d3df0cc2

SHA1:

be6d46c3d98c9b384cdd7345003c1405c3938ca7

Base64:

6aSb