Unicode Finder

"露" U+9732(CJK UNIFIED IDEOGRAPH-9732)

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

Programming

C
\u9732
JavaScript
\u9732
Java
\u9732
Json
\u9732
Python
\u9732
Perl
\x{9732}
PHP
\x{9732}
Ruby
\u{9732}
Rust
\u{9732}
Go
\u9732

Web

CSS
\009732
HtmlDecimal
露
HtmlHexadecimal
露
Url
%E9%9C%B2

Code

MD5
ecdeed790c0c861df8c91003011b9e85
Sha1
1af3e0fcd3b5b7cbccb295d0212ab9bc0ee96d35
Base64
6Zyy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9732';
console.log(char);  // Output: 露

Java:

char c = '\u9732';
System.out.println(c);  // Output: 露

JSON:

{"text": "\u9732"}  // Value: 露

Python:

char = '\u9732'
print(char)  # Output: 露

Perl:

my $char = "\x{9732}";
print $char;  # Output: 露

PHP:

$char = "\x{9732}";
echo $char;  // Output: 露

Ruby:

char = "\u{9732}"
puts char  # Output: 露

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009732";  /* Display: 露 */
}

HTML Decimal:

<p>HTML decimal: &#38706;</p>  <!-- Display: 露 -->

HTML Hexadecimal:

<p>HTML hex: &#x9732;</p>  <!-- Display: 露 -->

URL Encoding:

// 露 URL encoding
https://unicodefinder.com/search.php?query=%E9%9C%B2

Encodings

MD5:

ecdeed790c0c861df8c91003011b9e85

SHA1:

1af3e0fcd3b5b7cbccb295d0212ab9bc0ee96d35

Base64:

6Zyy