Unicode Finder

"饶" U+9976(CJK UNIFIED IDEOGRAPH-9976)

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

Programming

C
\u9976
JavaScript
\u9976
Java
\u9976
Json
\u9976
Python
\u9976
Perl
\x{9976}
PHP
\x{9976}
Ruby
\u{9976}
Rust
\u{9976}
Go
\u9976

Web

CSS
\009976
HtmlDecimal
饶
HtmlHexadecimal
饶
Url
%E9%A5%B6

Code

MD5
71ac85d9d296d6bdf08838d2ebf85277
Sha1
aff55b8b160b2fc938d4189faa3db28716bcb4bf
Base64
6aW2

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9976';
console.log(char);  // Output: 饶

Java:

char c = '\u9976';
System.out.println(c);  // Output: 饶

JSON:

{"text": "\u9976"}  // Value: 饶

Python:

char = '\u9976'
print(char)  # Output: 饶

Perl:

my $char = "\x{9976}";
print $char;  # Output: 饶

PHP:

$char = "\x{9976}";
echo $char;  // Output: 饶

Ruby:

char = "\u{9976}"
puts char  # Output: 饶

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009976";  /* Display: 饶 */
}

HTML Decimal:

<p>HTML decimal: &#39286;</p>  <!-- Display: 饶 -->

HTML Hexadecimal:

<p>HTML hex: &#x9976;</p>  <!-- Display: 饶 -->

URL Encoding:

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

Encodings

MD5:

71ac85d9d296d6bdf08838d2ebf85277

SHA1:

aff55b8b160b2fc938d4189faa3db28716bcb4bf

Base64:

6aW2