Unicode Finder

"暃" U+6683(CJK UNIFIED IDEOGRAPH-6683)

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

Programming

C
\u6683
JavaScript
\u6683
Java
\u6683
Json
\u6683
Python
\u6683
Perl
\x{6683}
PHP
\x{6683}
Ruby
\u{6683}
Rust
\u{6683}
Go
\u6683

Web

CSS
\006683
HtmlDecimal
暃
HtmlHexadecimal
暃
Url
%E6%9A%83

Code

MD5
b4448ae753096b7d8a39599e61173765
Sha1
c0f34b8035db43793d6d464db6fb94103c34f5ed
Base64
5pqD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6683';
console.log(char);  // Output: 暃

Java:

char c = '\u6683';
System.out.println(c);  // Output: 暃

JSON:

{"text": "\u6683"}  // Value: 暃

Python:

char = '\u6683'
print(char)  # Output: 暃

Perl:

my $char = "\x{6683}";
print $char;  # Output: 暃

PHP:

$char = "\x{6683}";
echo $char;  // Output: 暃

Ruby:

char = "\u{6683}"
puts char  # Output: 暃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006683";  /* Display: 暃 */
}

HTML Decimal:

<p>HTML decimal: &#26243;</p>  <!-- Display: 暃 -->

HTML Hexadecimal:

<p>HTML hex: &#x6683;</p>  <!-- Display: 暃 -->

URL Encoding:

// 暃 URL encoding
https://unicodefinder.com/search.php?query=%E6%9A%83

Encodings

MD5:

b4448ae753096b7d8a39599e61173765

SHA1:

c0f34b8035db43793d6d464db6fb94103c34f5ed

Base64:

5pqD