Unicode Finder

"怒" U+6012(CJK UNIFIED IDEOGRAPH-6012)

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

Programming

C
\u6012
JavaScript
\u6012
Java
\u6012
Json
\u6012
Python
\u6012
Perl
\x{6012}
PHP
\x{6012}
Ruby
\u{6012}
Rust
\u{6012}
Go
\u6012

Web

CSS
\006012
HtmlDecimal
怒
HtmlHexadecimal
怒
Url
%E6%80%92

Code

MD5
8a95a68143e6ed6eb22486e07e3bd34d
Sha1
88468ea430b08b5da09e9ca0f3d5ed9b27733412
Base64
5oCS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6012';
console.log(char);  // Output: 怒

Java:

char c = '\u6012';
System.out.println(c);  // Output: 怒

JSON:

{"text": "\u6012"}  // Value: 怒

Python:

char = '\u6012'
print(char)  # Output: 怒

Perl:

my $char = "\x{6012}";
print $char;  # Output: 怒

PHP:

$char = "\x{6012}";
echo $char;  // Output: 怒

Ruby:

char = "\u{6012}"
puts char  # Output: 怒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006012";  /* Display: 怒 */
}

HTML Decimal:

<p>HTML decimal: &#24594;</p>  <!-- Display: 怒 -->

HTML Hexadecimal:

<p>HTML hex: &#x6012;</p>  <!-- Display: 怒 -->

URL Encoding:

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

Encodings

MD5:

8a95a68143e6ed6eb22486e07e3bd34d

SHA1:

88468ea430b08b5da09e9ca0f3d5ed9b27733412

Base64:

5oCS