Unicode Finder

"怓" U+6013(CJK UNIFIED IDEOGRAPH-6013)

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

Programming

C
\u6013
JavaScript
\u6013
Java
\u6013
Json
\u6013
Python
\u6013
Perl
\x{6013}
PHP
\x{6013}
Ruby
\u{6013}
Rust
\u{6013}
Go
\u6013

Web

CSS
\006013
HtmlDecimal
怓
HtmlHexadecimal
怓
Url
%E6%80%93

Code

MD5
82fab4ca7fff31359cd7c895fa33ea79
Sha1
9373e091be4f7f6c42295cd48869d1da11500c58
Base64
5oCT

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6013';
console.log(char);  // Output: 怓

Java:

char c = '\u6013';
System.out.println(c);  // Output: 怓

JSON:

{"text": "\u6013"}  // Value: 怓

Python:

char = '\u6013'
print(char)  # Output: 怓

Perl:

my $char = "\x{6013}";
print $char;  # Output: 怓

PHP:

$char = "\x{6013}";
echo $char;  // Output: 怓

Ruby:

char = "\u{6013}"
puts char  # Output: 怓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006013";  /* Display: 怓 */
}

HTML Decimal:

<p>HTML decimal: &#24595;</p>  <!-- Display: 怓 -->

HTML Hexadecimal:

<p>HTML hex: &#x6013;</p>  <!-- Display: 怓 -->

URL Encoding:

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

Encodings

MD5:

82fab4ca7fff31359cd7c895fa33ea79

SHA1:

9373e091be4f7f6c42295cd48869d1da11500c58

Base64:

5oCT