Unicode Finder

"饐" U+9950(CJK UNIFIED IDEOGRAPH-9950)

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

Programming

C
\u9950
JavaScript
\u9950
Java
\u9950
Json
\u9950
Python
\u9950
Perl
\x{9950}
PHP
\x{9950}
Ruby
\u{9950}
Rust
\u{9950}
Go
\u9950

Web

CSS
\009950
HtmlDecimal
饐
HtmlHexadecimal
饐
Url
%E9%A5%90

Code

MD5
8c3c6eeca0fe76fd920273e74f60e1fa
Sha1
af818afceb42b1541c020d648db10794d036c3f0
Base64
6aWQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9950';
console.log(char);  // Output: 饐

Java:

char c = '\u9950';
System.out.println(c);  // Output: 饐

JSON:

{"text": "\u9950"}  // Value: 饐

Python:

char = '\u9950'
print(char)  # Output: 饐

Perl:

my $char = "\x{9950}";
print $char;  # Output: 饐

PHP:

$char = "\x{9950}";
echo $char;  // Output: 饐

Ruby:

char = "\u{9950}"
puts char  # Output: 饐

Rust:

let c = '\u{9950}';
println!("{}", c);  // Output: 饐

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009950";  /* Display: 饐 */
}

HTML Decimal:

<p>HTML decimal: &#39248;</p>  <!-- Display: 饐 -->

HTML Hexadecimal:

<p>HTML hex: &#x9950;</p>  <!-- Display: 饐 -->

URL Encoding:

// 饐 URL encoding
https://unicodefinder.com/search.php?query=%E9%A5%90

Encodings

MD5:

8c3c6eeca0fe76fd920273e74f60e1fa

SHA1:

af818afceb42b1541c020d648db10794d036c3f0

Base64:

6aWQ