Unicode Finder

"昀" U+6600(CJK UNIFIED IDEOGRAPH-6600)

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

Programming

C
\u6600
JavaScript
\u6600
Java
\u6600
Json
\u6600
Python
\u6600
Perl
\x{6600}
PHP
\x{6600}
Ruby
\u{6600}
Rust
\u{6600}
Go
\u6600

Web

CSS
\006600
HtmlDecimal
昀
HtmlHexadecimal
昀
Url
%E6%98%80

Code

MD5
44391aaeab3c7182f0b1a1305d252993
Sha1
735d59b03f3eac2c8b914fdb875f68ad666b901c
Base64
5piA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6600';
console.log(char);  // Output: 昀

Java:

char c = '\u6600';
System.out.println(c);  // Output: 昀

JSON:

{"text": "\u6600"}  // Value: 昀

Python:

char = '\u6600'
print(char)  # Output: 昀

Perl:

my $char = "\x{6600}";
print $char;  # Output: 昀

PHP:

$char = "\x{6600}";
echo $char;  // Output: 昀

Ruby:

char = "\u{6600}"
puts char  # Output: 昀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006600";  /* Display: 昀 */
}

HTML Decimal:

<p>HTML decimal: &#26112;</p>  <!-- Display: 昀 -->

HTML Hexadecimal:

<p>HTML hex: &#x6600;</p>  <!-- Display: 昀 -->

URL Encoding:

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

Encodings

MD5:

44391aaeab3c7182f0b1a1305d252993

SHA1:

735d59b03f3eac2c8b914fdb875f68ad666b901c

Base64:

5piA