Unicode Finder

"鞓" U+9793(CJK UNIFIED IDEOGRAPH-9793)

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

Programming

C
\u9793
JavaScript
\u9793
Java
\u9793
Json
\u9793
Python
\u9793
Perl
\x{9793}
PHP
\x{9793}
Ruby
\u{9793}
Rust
\u{9793}
Go
\u9793

Web

CSS
\009793
HtmlDecimal
鞓
HtmlHexadecimal
鞓
Url
%E9%9E%93

Code

MD5
f490b270bda6543939712a065a520e25
Sha1
8fc1d770b9b3e5342b0d971394e4b8fc3e825061
Base64
6Z6T

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9793';
console.log(char);  // Output: 鞓

Java:

char c = '\u9793';
System.out.println(c);  // Output: 鞓

JSON:

{"text": "\u9793"}  // Value: 鞓

Python:

char = '\u9793'
print(char)  # Output: 鞓

Perl:

my $char = "\x{9793}";
print $char;  # Output: 鞓

PHP:

$char = "\x{9793}";
echo $char;  // Output: 鞓

Ruby:

char = "\u{9793}"
puts char  # Output: 鞓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009793";  /* Display: 鞓 */
}

HTML Decimal:

<p>HTML decimal: &#38803;</p>  <!-- Display: 鞓 -->

HTML Hexadecimal:

<p>HTML hex: &#x9793;</p>  <!-- Display: 鞓 -->

URL Encoding:

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

Encodings

MD5:

f490b270bda6543939712a065a520e25

SHA1:

8fc1d770b9b3e5342b0d971394e4b8fc3e825061

Base64:

6Z6T