Unicode Finder

"潤" U+6F64(CJK UNIFIED IDEOGRAPH-6F64)

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

Programming

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

Web

CSS
\006F64
HtmlDecimal
潤
HtmlHexadecimal
潤
Url
%E6%BD%A4

Code

MD5
fb0dc5cdf94a1bb047e7d59fb4f713e5
Sha1
dd145d484a069cd0de04ca4c446219a0fb62900d
Base64
5r2k

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6F64';
console.log(char);  // Output: 潤

Java:

char c = '\u6F64';
System.out.println(c);  // Output: 潤

JSON:

{"text": "\u6F64"}  // Value: 潤

Python:

char = '\u6F64'
print(char)  # Output: 潤

Perl:

my $char = "\x{6F64}";
print $char;  # Output: 潤

PHP:

$char = "\x{6F64}";
echo $char;  // Output: 潤

Ruby:

char = "\u{6F64}"
puts char  # Output: 潤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28516;</p>  <!-- Display: 潤 -->

HTML Hexadecimal:

<p>HTML hex: &#x6F64;</p>  <!-- Display: 潤 -->

URL Encoding:

// 潤 URL encoding
https://unicodefinder.com/search.php?query=%E6%BD%A4

Encodings

MD5:

fb0dc5cdf94a1bb047e7d59fb4f713e5

SHA1:

dd145d484a069cd0de04ca4c446219a0fb62900d

Base64:

5r2k