Unicode Finder

"怡" U+6021(CJK UNIFIED IDEOGRAPH-6021)

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

Programming

C
\u6021
JavaScript
\u6021
Java
\u6021
Json
\u6021
Python
\u6021
Perl
\x{6021}
PHP
\x{6021}
Ruby
\u{6021}
Rust
\u{6021}
Go
\u6021

Web

CSS
\006021
HtmlDecimal
怡
HtmlHexadecimal
怡
Url
%E6%80%A1

Code

MD5
49326642c81d37ad01cc1d76d634f53b
Sha1
bdae3705a73610730b1f1fc8c1798536748e60be
Base64
5oCh

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6021';
console.log(char);  // Output: 怡

Java:

char c = '\u6021';
System.out.println(c);  // Output: 怡

JSON:

{"text": "\u6021"}  // Value: 怡

Python:

char = '\u6021'
print(char)  # Output: 怡

Perl:

my $char = "\x{6021}";
print $char;  # Output: 怡

PHP:

$char = "\x{6021}";
echo $char;  // Output: 怡

Ruby:

char = "\u{6021}"
puts char  # Output: 怡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006021";  /* Display: 怡 */
}

HTML Decimal:

<p>HTML decimal: &#24609;</p>  <!-- Display: 怡 -->

HTML Hexadecimal:

<p>HTML hex: &#x6021;</p>  <!-- Display: 怡 -->

URL Encoding:

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

Encodings

MD5:

49326642c81d37ad01cc1d76d634f53b

SHA1:

bdae3705a73610730b1f1fc8c1798536748e60be

Base64:

5oCh