Unicode Finder

"怨" U+6028(CJK UNIFIED IDEOGRAPH-6028)

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

Programming

C
\u6028
JavaScript
\u6028
Java
\u6028
Json
\u6028
Python
\u6028
Perl
\x{6028}
PHP
\x{6028}
Ruby
\u{6028}
Rust
\u{6028}
Go
\u6028

Web

CSS
\006028
HtmlDecimal
怨
HtmlHexadecimal
怨
Url
%E6%80%A8

Code

MD5
eb9b43b5cbea9465cce5ecfc9d272531
Sha1
26eaf89d477b17d40f1224e15360d2eef910d86b
Base64
5oCo

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6028';
console.log(char);  // Output: 怨

Java:

char c = '\u6028';
System.out.println(c);  // Output: 怨

JSON:

{"text": "\u6028"}  // Value: 怨

Python:

char = '\u6028'
print(char)  # Output: 怨

Perl:

my $char = "\x{6028}";
print $char;  # Output: 怨

PHP:

$char = "\x{6028}";
echo $char;  // Output: 怨

Ruby:

char = "\u{6028}"
puts char  # Output: 怨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006028";  /* Display: 怨 */
}

HTML Decimal:

<p>HTML decimal: &#24616;</p>  <!-- Display: 怨 -->

HTML Hexadecimal:

<p>HTML hex: &#x6028;</p>  <!-- Display: 怨 -->

URL Encoding:

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

Encodings

MD5:

eb9b43b5cbea9465cce5ecfc9d272531

SHA1:

26eaf89d477b17d40f1224e15360d2eef910d86b

Base64:

5oCo