Unicode Finder

"鞐" U+9790(CJK UNIFIED IDEOGRAPH-9790)

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

Programming

C
\u9790
JavaScript
\u9790
Java
\u9790
Json
\u9790
Python
\u9790
Perl
\x{9790}
PHP
\x{9790}
Ruby
\u{9790}
Rust
\u{9790}
Go
\u9790

Web

CSS
\009790
HtmlDecimal
鞐
HtmlHexadecimal
鞐
Url
%E9%9E%90

Code

MD5
4b69f2124c449c8f59913bc51fb00969
Sha1
450f262dd331ee83584a18abda62d120445d7a5b
Base64
6Z6Q

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9790';
console.log(char);  // Output: 鞐

Java:

char c = '\u9790';
System.out.println(c);  // Output: 鞐

JSON:

{"text": "\u9790"}  // Value: 鞐

Python:

char = '\u9790'
print(char)  # Output: 鞐

Perl:

my $char = "\x{9790}";
print $char;  # Output: 鞐

PHP:

$char = "\x{9790}";
echo $char;  // Output: 鞐

Ruby:

char = "\u{9790}"
puts char  # Output: 鞐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009790";  /* Display: 鞐 */
}

HTML Decimal:

<p>HTML decimal: &#38800;</p>  <!-- Display: 鞐 -->

HTML Hexadecimal:

<p>HTML hex: &#x9790;</p>  <!-- Display: 鞐 -->

URL Encoding:

// 鞐 URL encoding
https://unicodefinder.com/search.php?query=%E9%9E%90

Encodings

MD5:

4b69f2124c449c8f59913bc51fb00969

SHA1:

450f262dd331ee83584a18abda62d120445d7a5b

Base64:

6Z6Q