Unicode Finder

"隄" U+9684(CJK UNIFIED IDEOGRAPH-9684)

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

Programming

C
\u9684
JavaScript
\u9684
Java
\u9684
Json
\u9684
Python
\u9684
Perl
\x{9684}
PHP
\x{9684}
Ruby
\u{9684}
Rust
\u{9684}
Go
\u9684

Web

CSS
\009684
HtmlDecimal
隄
HtmlHexadecimal
隄
Url
%E9%9A%84

Code

MD5
677ede752b40207dae6544d11b77dc72
Sha1
9f31d35ee43b68098edc8370696f3222cd61cedc
Base64
6ZqE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9684';
console.log(char);  // Output: 隄

Java:

char c = '\u9684';
System.out.println(c);  // Output: 隄

JSON:

{"text": "\u9684"}  // Value: 隄

Python:

char = '\u9684'
print(char)  # Output: 隄

Perl:

my $char = "\x{9684}";
print $char;  # Output: 隄

PHP:

$char = "\x{9684}";
echo $char;  // Output: 隄

Ruby:

char = "\u{9684}"
puts char  # Output: 隄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009684";  /* Display: 隄 */
}

HTML Decimal:

<p>HTML decimal: &#38532;</p>  <!-- Display: 隄 -->

HTML Hexadecimal:

<p>HTML hex: &#x9684;</p>  <!-- Display: 隄 -->

URL Encoding:

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

Encodings

MD5:

677ede752b40207dae6544d11b77dc72

SHA1:

9f31d35ee43b68098edc8370696f3222cd61cedc

Base64:

6ZqE