Unicode Finder

"隒" U+9692(CJK UNIFIED IDEOGRAPH-9692)

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

Programming

C
\u9692
JavaScript
\u9692
Java
\u9692
Json
\u9692
Python
\u9692
Perl
\x{9692}
PHP
\x{9692}
Ruby
\u{9692}
Rust
\u{9692}
Go
\u9692

Web

CSS
\009692
HtmlDecimal
隒
HtmlHexadecimal
隒
Url
%E9%9A%92

Code

MD5
8182407d055225f2325ff0579bbce4b7
Sha1
4d7c7340e247fc956c0fd4331100cd7fb99d34a3
Base64
6ZqS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9692';
console.log(char);  // Output: 隒

Java:

char c = '\u9692';
System.out.println(c);  // Output: 隒

JSON:

{"text": "\u9692"}  // Value: 隒

Python:

char = '\u9692'
print(char)  # Output: 隒

Perl:

my $char = "\x{9692}";
print $char;  # Output: 隒

PHP:

$char = "\x{9692}";
echo $char;  // Output: 隒

Ruby:

char = "\u{9692}"
puts char  # Output: 隒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009692";  /* Display: 隒 */
}

HTML Decimal:

<p>HTML decimal: &#38546;</p>  <!-- Display: 隒 -->

HTML Hexadecimal:

<p>HTML hex: &#x9692;</p>  <!-- Display: 隒 -->

URL Encoding:

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

Encodings

MD5:

8182407d055225f2325ff0579bbce4b7

SHA1:

4d7c7340e247fc956c0fd4331100cd7fb99d34a3

Base64:

6ZqS