Unicode Finder

"悀" U+6080(CJK UNIFIED IDEOGRAPH-6080)

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

Programming

C
\u6080
JavaScript
\u6080
Java
\u6080
Json
\u6080
Python
\u6080
Perl
\x{6080}
PHP
\x{6080}
Ruby
\u{6080}
Rust
\u{6080}
Go
\u6080

Web

CSS
\006080
HtmlDecimal
悀
HtmlHexadecimal
悀
Url
%E6%82%80

Code

MD5
994c7a9805af5e9a6823ccfcd41ae89a
Sha1
0eda7995d53fa876222facaaa5cc5b9d2bc940b1
Base64
5oKA

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6080';
console.log(char);  // Output: 悀

Java:

char c = '\u6080';
System.out.println(c);  // Output: 悀

JSON:

{"text": "\u6080"}  // Value: 悀

Python:

char = '\u6080'
print(char)  # Output: 悀

Perl:

my $char = "\x{6080}";
print $char;  # Output: 悀

PHP:

$char = "\x{6080}";
echo $char;  // Output: 悀

Ruby:

char = "\u{6080}"
puts char  # Output: 悀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006080";  /* Display: 悀 */
}

HTML Decimal:

<p>HTML decimal: &#24704;</p>  <!-- Display: 悀 -->

HTML Hexadecimal:

<p>HTML hex: &#x6080;</p>  <!-- Display: 悀 -->

URL Encoding:

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

Encodings

MD5:

994c7a9805af5e9a6823ccfcd41ae89a

SHA1:

0eda7995d53fa876222facaaa5cc5b9d2bc940b1

Base64:

5oKA