Unicode Finder

"怈" U+6008(CJK UNIFIED IDEOGRAPH-6008)

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

Programming

C
\u6008
JavaScript
\u6008
Java
\u6008
Json
\u6008
Python
\u6008
Perl
\x{6008}
PHP
\x{6008}
Ruby
\u{6008}
Rust
\u{6008}
Go
\u6008

Web

CSS
\006008
HtmlDecimal
怈
HtmlHexadecimal
怈
Url
%E6%80%88

Code

MD5
4ff4d525f529d77f27161c001a486f25
Sha1
0ca23e36391e39b0da792267c7d5655a600447e3
Base64
5oCI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6008';
console.log(char);  // Output: 怈

Java:

char c = '\u6008';
System.out.println(c);  // Output: 怈

JSON:

{"text": "\u6008"}  // Value: 怈

Python:

char = '\u6008'
print(char)  # Output: 怈

Perl:

my $char = "\x{6008}";
print $char;  # Output: 怈

PHP:

$char = "\x{6008}";
echo $char;  // Output: 怈

Ruby:

char = "\u{6008}"
puts char  # Output: 怈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006008";  /* Display: 怈 */
}

HTML Decimal:

<p>HTML decimal: &#24584;</p>  <!-- Display: 怈 -->

HTML Hexadecimal:

<p>HTML hex: &#x6008;</p>  <!-- Display: 怈 -->

URL Encoding:

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

Encodings

MD5:

4ff4d525f529d77f27161c001a486f25

SHA1:

0ca23e36391e39b0da792267c7d5655a600447e3

Base64:

5oCI