Unicode Finder

"暈" U+6688(CJK UNIFIED IDEOGRAPH-6688)

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

Programming

C
\u6688
JavaScript
\u6688
Java
\u6688
Json
\u6688
Python
\u6688
Perl
\x{6688}
PHP
\x{6688}
Ruby
\u{6688}
Rust
\u{6688}
Go
\u6688

Web

CSS
\006688
HtmlDecimal
暈
HtmlHexadecimal
暈
Url
%E6%9A%88

Code

MD5
5c328f2347cb427a05f7b8e7d24e0fd4
Sha1
ad9b755ac68a81fd9e15d394b1833a6e07ceae28
Base64
5pqI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6688';
console.log(char);  // Output: 暈

Java:

char c = '\u6688';
System.out.println(c);  // Output: 暈

JSON:

{"text": "\u6688"}  // Value: 暈

Python:

char = '\u6688'
print(char)  # Output: 暈

Perl:

my $char = "\x{6688}";
print $char;  # Output: 暈

PHP:

$char = "\x{6688}";
echo $char;  // Output: 暈

Ruby:

char = "\u{6688}"
puts char  # Output: 暈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006688";  /* Display: 暈 */
}

HTML Decimal:

<p>HTML decimal: &#26248;</p>  <!-- Display: 暈 -->

HTML Hexadecimal:

<p>HTML hex: &#x6688;</p>  <!-- Display: 暈 -->

URL Encoding:

// 暈 URL encoding
https://unicodefinder.com/search.php?query=%E6%9A%88

Encodings

MD5:

5c328f2347cb427a05f7b8e7d24e0fd4

SHA1:

ad9b755ac68a81fd9e15d394b1833a6e07ceae28

Base64:

5pqI