Unicode Finder

"怕" U+6015(CJK UNIFIED IDEOGRAPH-6015)

U+6015
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-6015

Programming

C
\u6015
JavaScript
\u6015
Java
\u6015
Json
\u6015
Python
\u6015
Perl
\x{6015}
PHP
\x{6015}
Ruby
\u{6015}
Rust
\u{6015}
Go
\u6015

Web

CSS
\006015
HtmlDecimal
怕
HtmlHexadecimal
怕
Url
%E6%80%95

Code

MD5
93efc278bc68c96b74d8afb51390158b
Sha1
bc1c58b84b5a695b4b628be217f6a68514cb3706
Base64
5oCV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6015';
console.log(char);  // Output: 怕

Java:

char c = '\u6015';
System.out.println(c);  // Output: 怕

JSON:

{"text": "\u6015"}  // Value: 怕

Python:

char = '\u6015'
print(char)  # Output: 怕

Perl:

my $char = "\x{6015}";
print $char;  # Output: 怕

PHP:

$char = "\x{6015}";
echo $char;  // Output: 怕

Ruby:

char = "\u{6015}"
puts char  # Output: 怕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006015";  /* Display: 怕 */
}

HTML Decimal:

<p>HTML decimal: &#24597;</p>  <!-- Display: 怕 -->

HTML Hexadecimal:

<p>HTML hex: &#x6015;</p>  <!-- Display: 怕 -->

URL Encoding:

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

Encodings

MD5:

93efc278bc68c96b74d8afb51390158b

SHA1:

bc1c58b84b5a695b4b628be217f6a68514cb3706

Base64:

5oCV