Unicode Finder

"怗" U+6017(CJK UNIFIED IDEOGRAPH-6017)

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

Programming

C
\u6017
JavaScript
\u6017
Java
\u6017
Json
\u6017
Python
\u6017
Perl
\x{6017}
PHP
\x{6017}
Ruby
\u{6017}
Rust
\u{6017}
Go
\u6017

Web

CSS
\006017
HtmlDecimal
怗
HtmlHexadecimal
怗
Url
%E6%80%97

Code

MD5
f1748ba6eeae8c9c5308b58d1d327bc7
Sha1
576fc8d32eb5d4329bb813350a3d66d7d9841a1b
Base64
5oCX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6017';
console.log(char);  // Output: 怗

Java:

char c = '\u6017';
System.out.println(c);  // Output: 怗

JSON:

{"text": "\u6017"}  // Value: 怗

Python:

char = '\u6017'
print(char)  # Output: 怗

Perl:

my $char = "\x{6017}";
print $char;  # Output: 怗

PHP:

$char = "\x{6017}";
echo $char;  // Output: 怗

Ruby:

char = "\u{6017}"
puts char  # Output: 怗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006017";  /* Display: 怗 */
}

HTML Decimal:

<p>HTML decimal: &#24599;</p>  <!-- Display: 怗 -->

HTML Hexadecimal:

<p>HTML hex: &#x6017;</p>  <!-- Display: 怗 -->

URL Encoding:

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

Encodings

MD5:

f1748ba6eeae8c9c5308b58d1d327bc7

SHA1:

576fc8d32eb5d4329bb813350a3d66d7d9841a1b

Base64:

5oCX