Unicode Finder

"阒" U+9612(CJK UNIFIED IDEOGRAPH-9612)

U+9612
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-9612

Programming

C
\u9612
JavaScript
\u9612
Java
\u9612
Json
\u9612
Python
\u9612
Perl
\x{9612}
PHP
\x{9612}
Ruby
\u{9612}
Rust
\u{9612}
Go
\u9612

Web

CSS
\009612
HtmlDecimal
阒
HtmlHexadecimal
阒
Url
%E9%98%92

Code

MD5
8dbc2e74a81640e71e4025a3afd51e94
Sha1
54bde4d4b3d8399340ec8194b32ff2598f61a37b
Base64
6ZiS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9612';
console.log(char);  // Output: 阒

Java:

char c = '\u9612';
System.out.println(c);  // Output: 阒

JSON:

{"text": "\u9612"}  // Value: 阒

Python:

char = '\u9612'
print(char)  # Output: 阒

Perl:

my $char = "\x{9612}";
print $char;  # Output: 阒

PHP:

$char = "\x{9612}";
echo $char;  // Output: 阒

Ruby:

char = "\u{9612}"
puts char  # Output: 阒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009612";  /* Display: 阒 */
}

HTML Decimal:

<p>HTML decimal: &#38418;</p>  <!-- Display: 阒 -->

HTML Hexadecimal:

<p>HTML hex: &#x9612;</p>  <!-- Display: 阒 -->

URL Encoding:

// 阒 URL encoding
https://unicodefinder.com/search.php?query=%E9%98%92

Encodings

MD5:

8dbc2e74a81640e71e4025a3afd51e94

SHA1:

54bde4d4b3d8399340ec8194b32ff2598f61a37b

Base64:

6ZiS