Unicode Finder

"悅" U+6085(CJK UNIFIED IDEOGRAPH-6085)

U+6085
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-6085

Programming

C
\u6085
JavaScript
\u6085
Java
\u6085
Json
\u6085
Python
\u6085
Perl
\x{6085}
PHP
\x{6085}
Ruby
\u{6085}
Rust
\u{6085}
Go
\u6085

Web

CSS
\006085
HtmlDecimal
悅
HtmlHexadecimal
悅
Url
%E6%82%85

Code

MD5
5c734f6c5e992376a45541f59bc8c648
Sha1
d2e90d6c8f7091a603e3aa9cfd9d3bd12f18dc1a
Base64
5oKF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6085';
console.log(char);  // Output: 悅

Java:

char c = '\u6085';
System.out.println(c);  // Output: 悅

JSON:

{"text": "\u6085"}  // Value: 悅

Python:

char = '\u6085'
print(char)  # Output: 悅

Perl:

my $char = "\x{6085}";
print $char;  # Output: 悅

PHP:

$char = "\x{6085}";
echo $char;  // Output: 悅

Ruby:

char = "\u{6085}"
puts char  # Output: 悅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006085";  /* Display: 悅 */
}

HTML Decimal:

<p>HTML decimal: &#24709;</p>  <!-- Display: 悅 -->

HTML Hexadecimal:

<p>HTML hex: &#x6085;</p>  <!-- Display: 悅 -->

URL Encoding:

// 悅 URL encoding
https://unicodefinder.com/search.php?query=%E6%82%85

Encodings

MD5:

5c734f6c5e992376a45541f59bc8c648

SHA1:

d2e90d6c8f7091a603e3aa9cfd9d3bd12f18dc1a

Base64:

5oKF