Unicode Finder

"悈" U+6088(CJK UNIFIED IDEOGRAPH-6088)

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

Programming

C
\u6088
JavaScript
\u6088
Java
\u6088
Json
\u6088
Python
\u6088
Perl
\x{6088}
PHP
\x{6088}
Ruby
\u{6088}
Rust
\u{6088}
Go
\u6088

Web

CSS
\006088
HtmlDecimal
悈
HtmlHexadecimal
悈
Url
%E6%82%88

Code

MD5
118bc53de60e4698a644a20e883f5dfe
Sha1
a6ae5a917474bd3a2fb3293292af231c7168bf5c
Base64
5oKI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6088';
console.log(char);  // Output: 悈

Java:

char c = '\u6088';
System.out.println(c);  // Output: 悈

JSON:

{"text": "\u6088"}  // Value: 悈

Python:

char = '\u6088'
print(char)  # Output: 悈

Perl:

my $char = "\x{6088}";
print $char;  # Output: 悈

PHP:

$char = "\x{6088}";
echo $char;  // Output: 悈

Ruby:

char = "\u{6088}"
puts char  # Output: 悈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006088";  /* Display: 悈 */
}

HTML Decimal:

<p>HTML decimal: &#24712;</p>  <!-- Display: 悈 -->

HTML Hexadecimal:

<p>HTML hex: &#x6088;</p>  <!-- Display: 悈 -->

URL Encoding:

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

Encodings

MD5:

118bc53de60e4698a644a20e883f5dfe

SHA1:

a6ae5a917474bd3a2fb3293292af231c7168bf5c

Base64:

5oKI