Unicode Finder

"润" U+6DA6(CJK UNIFIED IDEOGRAPH-6DA6)

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

Programming

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

Web

CSS
\006DA6
HtmlDecimal
润
HtmlHexadecimal
润
Url
%E6%B6%A6

Code

MD5
0c1c881784376283943f6d106daf6445
Sha1
1a3b0ac4db885124c2ca8a0ec625518e882c446f
Base64
5ram

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DA6';
console.log(char);  // Output: 润

Java:

char c = '\u6DA6';
System.out.println(c);  // Output: 润

JSON:

{"text": "\u6DA6"}  // Value: 润

Python:

char = '\u6DA6'
print(char)  # Output: 润

Perl:

my $char = "\x{6DA6}";
print $char;  # Output: 润

PHP:

$char = "\x{6DA6}";
echo $char;  // Output: 润

Ruby:

char = "\u{6DA6}"
puts char  # Output: 润

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28070;</p>  <!-- Display: 润 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DA6;</p>  <!-- Display: 润 -->

URL Encoding:

// 润 URL encoding
https://unicodefinder.com/search.php?query=%E6%B6%A6

Encodings

MD5:

0c1c881784376283943f6d106daf6445

SHA1:

1a3b0ac4db885124c2ca8a0ec625518e882c446f

Base64:

5ram