Unicode Finder

"怅" U+6005(CJK UNIFIED IDEOGRAPH-6005)

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

Programming

C
\u6005
JavaScript
\u6005
Java
\u6005
Json
\u6005
Python
\u6005
Perl
\x{6005}
PHP
\x{6005}
Ruby
\u{6005}
Rust
\u{6005}
Go
\u6005

Web

CSS
\006005
HtmlDecimal
怅
HtmlHexadecimal
怅
Url
%E6%80%85

Code

MD5
b93754859d7d094b4926d736df089d98
Sha1
ec61e4fcfccdbd10c423ac4ba5287402d28e1296
Base64
5oCF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6005';
console.log(char);  // Output: 怅

Java:

char c = '\u6005';
System.out.println(c);  // Output: 怅

JSON:

{"text": "\u6005"}  // Value: 怅

Python:

char = '\u6005'
print(char)  # Output: 怅

Perl:

my $char = "\x{6005}";
print $char;  # Output: 怅

PHP:

$char = "\x{6005}";
echo $char;  // Output: 怅

Ruby:

char = "\u{6005}"
puts char  # Output: 怅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006005";  /* Display: 怅 */
}

HTML Decimal:

<p>HTML decimal: &#24581;</p>  <!-- Display: 怅 -->

HTML Hexadecimal:

<p>HTML hex: &#x6005;</p>  <!-- Display: 怅 -->

URL Encoding:

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

Encodings

MD5:

b93754859d7d094b4926d736df089d98

SHA1:

ec61e4fcfccdbd10c423ac4ba5287402d28e1296

Base64:

5oCF