Unicode Finder

"晱" U+6671(CJK UNIFIED IDEOGRAPH-6671)

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

Programming

C
\u6671
JavaScript
\u6671
Java
\u6671
Json
\u6671
Python
\u6671
Perl
\x{6671}
PHP
\x{6671}
Ruby
\u{6671}
Rust
\u{6671}
Go
\u6671

Web

CSS
\006671
HtmlDecimal
晱
HtmlHexadecimal
晱
Url
%E6%99%B1

Code

MD5
edc80c35a6e8f837e97d71f733622491
Sha1
542db24e84cc797b205a9769bc14d2699569a02c
Base64
5pmx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6671';
console.log(char);  // Output: 晱

Java:

char c = '\u6671';
System.out.println(c);  // Output: 晱

JSON:

{"text": "\u6671"}  // Value: 晱

Python:

char = '\u6671'
print(char)  # Output: 晱

Perl:

my $char = "\x{6671}";
print $char;  # Output: 晱

PHP:

$char = "\x{6671}";
echo $char;  // Output: 晱

Ruby:

char = "\u{6671}"
puts char  # Output: 晱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006671";  /* Display: 晱 */
}

HTML Decimal:

<p>HTML decimal: &#26225;</p>  <!-- Display: 晱 -->

HTML Hexadecimal:

<p>HTML hex: &#x6671;</p>  <!-- Display: 晱 -->

URL Encoding:

// 晱 URL encoding
https://unicodefinder.com/search.php?query=%E6%99%B1

Encodings

MD5:

edc80c35a6e8f837e97d71f733622491

SHA1:

542db24e84cc797b205a9769bc14d2699569a02c

Base64:

5pmx