Unicode Finder

"怉" U+6009(CJK UNIFIED IDEOGRAPH-6009)

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

Programming

C
\u6009
JavaScript
\u6009
Java
\u6009
Json
\u6009
Python
\u6009
Perl
\x{6009}
PHP
\x{6009}
Ruby
\u{6009}
Rust
\u{6009}
Go
\u6009

Web

CSS
\006009
HtmlDecimal
怉
HtmlHexadecimal
怉
Url
%E6%80%89

Code

MD5
118e1e14a70656921b812c28514c9e95
Sha1
0d7880e62645b0c77c25e0719c9215e26c7492fd
Base64
5oCJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6009';
console.log(char);  // Output: 怉

Java:

char c = '\u6009';
System.out.println(c);  // Output: 怉

JSON:

{"text": "\u6009"}  // Value: 怉

Python:

char = '\u6009'
print(char)  # Output: 怉

Perl:

my $char = "\x{6009}";
print $char;  # Output: 怉

PHP:

$char = "\x{6009}";
echo $char;  // Output: 怉

Ruby:

char = "\u{6009}"
puts char  # Output: 怉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006009";  /* Display: 怉 */
}

HTML Decimal:

<p>HTML decimal: &#24585;</p>  <!-- Display: 怉 -->

HTML Hexadecimal:

<p>HTML hex: &#x6009;</p>  <!-- Display: 怉 -->

URL Encoding:

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

Encodings

MD5:

118e1e14a70656921b812c28514c9e95

SHA1:

0d7880e62645b0c77c25e0719c9215e26c7492fd

Base64:

5oCJ