Unicode Finder

"鞒" U+9792(CJK UNIFIED IDEOGRAPH-9792)

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

Programming

C
\u9792
JavaScript
\u9792
Java
\u9792
Json
\u9792
Python
\u9792
Perl
\x{9792}
PHP
\x{9792}
Ruby
\u{9792}
Rust
\u{9792}
Go
\u9792

Web

CSS
\009792
HtmlDecimal
鞒
HtmlHexadecimal
鞒
Url
%E9%9E%92

Code

MD5
631e9b140ed9036394e51ec3882c0e24
Sha1
6139d115422f5835c0ebd727362ecb67b6b28ddb
Base64
6Z6S

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9792';
console.log(char);  // Output: 鞒

Java:

char c = '\u9792';
System.out.println(c);  // Output: 鞒

JSON:

{"text": "\u9792"}  // Value: 鞒

Python:

char = '\u9792'
print(char)  # Output: 鞒

Perl:

my $char = "\x{9792}";
print $char;  # Output: 鞒

PHP:

$char = "\x{9792}";
echo $char;  // Output: 鞒

Ruby:

char = "\u{9792}"
puts char  # Output: 鞒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009792";  /* Display: 鞒 */
}

HTML Decimal:

<p>HTML decimal: &#38802;</p>  <!-- Display: 鞒 -->

HTML Hexadecimal:

<p>HTML hex: &#x9792;</p>  <!-- Display: 鞒 -->

URL Encoding:

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

Encodings

MD5:

631e9b140ed9036394e51ec3882c0e24

SHA1:

6139d115422f5835c0ebd727362ecb67b6b28ddb

Base64:

6Z6S