Unicode Finder

"怖" U+6016(CJK UNIFIED IDEOGRAPH-6016)

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

Programming

C
\u6016
JavaScript
\u6016
Java
\u6016
Json
\u6016
Python
\u6016
Perl
\x{6016}
PHP
\x{6016}
Ruby
\u{6016}
Rust
\u{6016}
Go
\u6016

Web

CSS
\006016
HtmlDecimal
怖
HtmlHexadecimal
怖
Url
%E6%80%96

Code

MD5
6f49ab6a3459cd84b179706512679c04
Sha1
521e28c1cbe0ad2fde1e0f20046a602e8c27e27c
Base64
5oCW

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6016';
console.log(char);  // Output: 怖

Java:

char c = '\u6016';
System.out.println(c);  // Output: 怖

JSON:

{"text": "\u6016"}  // Value: 怖

Python:

char = '\u6016'
print(char)  # Output: 怖

Perl:

my $char = "\x{6016}";
print $char;  # Output: 怖

PHP:

$char = "\x{6016}";
echo $char;  // Output: 怖

Ruby:

char = "\u{6016}"
puts char  # Output: 怖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006016";  /* Display: 怖 */
}

HTML Decimal:

<p>HTML decimal: &#24598;</p>  <!-- Display: 怖 -->

HTML Hexadecimal:

<p>HTML hex: &#x6016;</p>  <!-- Display: 怖 -->

URL Encoding:

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

Encodings

MD5:

6f49ab6a3459cd84b179706512679c04

SHA1:

521e28c1cbe0ad2fde1e0f20046a602e8c27e27c

Base64:

5oCW