Unicode Finder

"悃" U+6083(CJK UNIFIED IDEOGRAPH-6083)

U+6083
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-6083

Programming

C
\u6083
JavaScript
\u6083
Java
\u6083
Json
\u6083
Python
\u6083
Perl
\x{6083}
PHP
\x{6083}
Ruby
\u{6083}
Rust
\u{6083}
Go
\u6083

Web

CSS
\006083
HtmlDecimal
悃
HtmlHexadecimal
悃
Url
%E6%82%83

Code

MD5
91f937dfc5c85965bbdc4b3f640bc5a8
Sha1
dac56549f3d8a87aac8c9b10dda42c79866426c8
Base64
5oKD

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6083';
console.log(char);  // Output: 悃

Java:

char c = '\u6083';
System.out.println(c);  // Output: 悃

JSON:

{"text": "\u6083"}  // Value: 悃

Python:

char = '\u6083'
print(char)  # Output: 悃

Perl:

my $char = "\x{6083}";
print $char;  # Output: 悃

PHP:

$char = "\x{6083}";
echo $char;  // Output: 悃

Ruby:

char = "\u{6083}"
puts char  # Output: 悃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006083";  /* Display: 悃 */
}

HTML Decimal:

<p>HTML decimal: &#24707;</p>  <!-- Display: 悃 -->

HTML Hexadecimal:

<p>HTML hex: &#x6083;</p>  <!-- Display: 悃 -->

URL Encoding:

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

Encodings

MD5:

91f937dfc5c85965bbdc4b3f640bc5a8

SHA1:

dac56549f3d8a87aac8c9b10dda42c79866426c8

Base64:

5oKD