Unicode Finder

"渹" U+6E39(CJK UNIFIED IDEOGRAPH-6E39)

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

Programming

C
\u6E39
JavaScript
\u6E39
Java
\u6E39
Json
\u6E39
Python
\u6E39
Perl
\x{6E39}
PHP
\x{6E39}
Ruby
\u{6E39}
Rust
\u{6E39}
Go
\u6E39

Web

CSS
\006E39
HtmlDecimal
渹
HtmlHexadecimal
渹
Url
%E6%B8%B9

Code

MD5
19bad4dcd883fc1d8be365e121858197
Sha1
f0c033205096e7ecce0bc3b12a48b6abb2006f45
Base64
5ri5

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6E39';
console.log(char);  // Output: 渹

Java:

char c = '\u6E39';
System.out.println(c);  // Output: 渹

JSON:

{"text": "\u6E39"}  // Value: 渹

Python:

char = '\u6E39'
print(char)  # Output: 渹

Perl:

my $char = "\x{6E39}";
print $char;  # Output: 渹

PHP:

$char = "\x{6E39}";
echo $char;  // Output: 渹

Ruby:

char = "\u{6E39}"
puts char  # Output: 渹

Rust:

let c = '\u{6E39}';
println!("{}", c);  // Output: 渹

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006E39";  /* Display: 渹 */
}

HTML Decimal:

<p>HTML decimal: &#28217;</p>  <!-- Display: 渹 -->

HTML Hexadecimal:

<p>HTML hex: &#x6E39;</p>  <!-- Display: 渹 -->

URL Encoding:

// 渹 URL encoding
https://unicodefinder.com/search.php?query=%E6%B8%B9

Encodings

MD5:

19bad4dcd883fc1d8be365e121858197

SHA1:

f0c033205096e7ecce0bc3b12a48b6abb2006f45

Base64:

5ri5