Unicode Finder

"憃" U+6183(CJK UNIFIED IDEOGRAPH-6183)

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

Programming

C
\u6183
JavaScript
\u6183
Java
\u6183
Json
\u6183
Python
\u6183
Perl
\x{6183}
PHP
\x{6183}
Ruby
\u{6183}
Rust
\u{6183}
Go
\u6183

Web

CSS
\006183
HtmlDecimal
憃
HtmlHexadecimal
憃
Url
%E6%86%83

Code

MD5
c4baf575f57a3b05778a583f50ed8727
Sha1
71d2e457470c44d3f63f692edf7e40b2cda63562
Base64
5oaD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6183';
console.log(char);  // Output: 憃

Java:

char c = '\u6183';
System.out.println(c);  // Output: 憃

JSON:

{"text": "\u6183"}  // Value: 憃

Python:

char = '\u6183'
print(char)  # Output: 憃

Perl:

my $char = "\x{6183}";
print $char;  # Output: 憃

PHP:

$char = "\x{6183}";
echo $char;  // Output: 憃

Ruby:

char = "\u{6183}"
puts char  # Output: 憃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006183";  /* Display: 憃 */
}

HTML Decimal:

<p>HTML decimal: &#24963;</p>  <!-- Display: 憃 -->

HTML Hexadecimal:

<p>HTML hex: &#x6183;</p>  <!-- Display: 憃 -->

URL Encoding:

// 憃 URL encoding
https://unicodefinder.com/search.php?query=%E6%86%83

Encodings

MD5:

c4baf575f57a3b05778a583f50ed8727

SHA1:

71d2e457470c44d3f63f692edf7e40b2cda63562

Base64:

5oaD