Unicode Finder

"怔" U+6014(CJK UNIFIED IDEOGRAPH-6014)

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

Programming

C
\u6014
JavaScript
\u6014
Java
\u6014
Json
\u6014
Python
\u6014
Perl
\x{6014}
PHP
\x{6014}
Ruby
\u{6014}
Rust
\u{6014}
Go
\u6014

Web

CSS
\006014
HtmlDecimal
怔
HtmlHexadecimal
怔
Url
%E6%80%94

Code

MD5
33a2979f0724eb2e52419b7f10017346
Sha1
3282d8409eae7e6ecf3c3355bef7ba0781a7cf82
Base64
5oCU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6014';
console.log(char);  // Output: 怔

Java:

char c = '\u6014';
System.out.println(c);  // Output: 怔

JSON:

{"text": "\u6014"}  // Value: 怔

Python:

char = '\u6014'
print(char)  # Output: 怔

Perl:

my $char = "\x{6014}";
print $char;  # Output: 怔

PHP:

$char = "\x{6014}";
echo $char;  // Output: 怔

Ruby:

char = "\u{6014}"
puts char  # Output: 怔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006014";  /* Display: 怔 */
}

HTML Decimal:

<p>HTML decimal: &#24596;</p>  <!-- Display: 怔 -->

HTML Hexadecimal:

<p>HTML hex: &#x6014;</p>  <!-- Display: 怔 -->

URL Encoding:

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

Encodings

MD5:

33a2979f0724eb2e52419b7f10017346

SHA1:

3282d8409eae7e6ecf3c3355bef7ba0781a7cf82

Base64:

5oCU