Unicode Finder

"隃" U+9683(CJK UNIFIED IDEOGRAPH-9683)

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

Programming

C
\u9683
JavaScript
\u9683
Java
\u9683
Json
\u9683
Python
\u9683
Perl
\x{9683}
PHP
\x{9683}
Ruby
\u{9683}
Rust
\u{9683}
Go
\u9683

Web

CSS
\009683
HtmlDecimal
隃
HtmlHexadecimal
隃
Url
%E9%9A%83

Code

MD5
ab39793f46cdda70255521d4da97a630
Sha1
05b3901e8fc33f36d262a9c5791b59c32a28258f
Base64
6ZqD

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9683';
console.log(char);  // Output: 隃

Java:

char c = '\u9683';
System.out.println(c);  // Output: 隃

JSON:

{"text": "\u9683"}  // Value: 隃

Python:

char = '\u9683'
print(char)  # Output: 隃

Perl:

my $char = "\x{9683}";
print $char;  # Output: 隃

PHP:

$char = "\x{9683}";
echo $char;  // Output: 隃

Ruby:

char = "\u{9683}"
puts char  # Output: 隃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009683";  /* Display: 隃 */
}

HTML Decimal:

<p>HTML decimal: &#38531;</p>  <!-- Display: 隃 -->

HTML Hexadecimal:

<p>HTML hex: &#x9683;</p>  <!-- Display: 隃 -->

URL Encoding:

// 隃 URL encoding
https://unicodefinder.com/search.php?query=%E9%9A%83

Encodings

MD5:

ab39793f46cdda70255521d4da97a630

SHA1:

05b3901e8fc33f36d262a9c5791b59c32a28258f

Base64:

6ZqD