Unicode Finder

"怆" U+6006(CJK UNIFIED IDEOGRAPH-6006)

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

Programming

C
\u6006
JavaScript
\u6006
Java
\u6006
Json
\u6006
Python
\u6006
Perl
\x{6006}
PHP
\x{6006}
Ruby
\u{6006}
Rust
\u{6006}
Go
\u6006

Web

CSS
\006006
HtmlDecimal
怆
HtmlHexadecimal
怆
Url
%E6%80%86

Code

MD5
70cadbe36fcab1ab1e948c47185fdd63
Sha1
b4826a753f1c5076bb0ed08562de7450168a4ded
Base64
5oCG

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6006';
console.log(char);  // Output: 怆

Java:

char c = '\u6006';
System.out.println(c);  // Output: 怆

JSON:

{"text": "\u6006"}  // Value: 怆

Python:

char = '\u6006'
print(char)  # Output: 怆

Perl:

my $char = "\x{6006}";
print $char;  # Output: 怆

PHP:

$char = "\x{6006}";
echo $char;  // Output: 怆

Ruby:

char = "\u{6006}"
puts char  # Output: 怆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006006";  /* Display: 怆 */
}

HTML Decimal:

<p>HTML decimal: &#24582;</p>  <!-- Display: 怆 -->

HTML Hexadecimal:

<p>HTML hex: &#x6006;</p>  <!-- Display: 怆 -->

URL Encoding:

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

Encodings

MD5:

70cadbe36fcab1ab1e948c47185fdd63

SHA1:

b4826a753f1c5076bb0ed08562de7450168a4ded

Base64:

5oCG