Unicode Finder

"悙" U+6099(CJK UNIFIED IDEOGRAPH-6099)

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

Programming

C
\u6099
JavaScript
\u6099
Java
\u6099
Json
\u6099
Python
\u6099
Perl
\x{6099}
PHP
\x{6099}
Ruby
\u{6099}
Rust
\u{6099}
Go
\u6099

Web

CSS
\006099
HtmlDecimal
悙
HtmlHexadecimal
悙
Url
%E6%82%99

Code

MD5
671eb0fc9c695cfb942db2504dfbbed8
Sha1
f64e20deb73cadc1c4da84bca3af3d2ab7257c92
Base64
5oKZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6099';
console.log(char);  // Output: 悙

Java:

char c = '\u6099';
System.out.println(c);  // Output: 悙

JSON:

{"text": "\u6099"}  // Value: 悙

Python:

char = '\u6099'
print(char)  # Output: 悙

Perl:

my $char = "\x{6099}";
print $char;  # Output: 悙

PHP:

$char = "\x{6099}";
echo $char;  // Output: 悙

Ruby:

char = "\u{6099}"
puts char  # Output: 悙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006099";  /* Display: 悙 */
}

HTML Decimal:

<p>HTML decimal: &#24729;</p>  <!-- Display: 悙 -->

HTML Hexadecimal:

<p>HTML hex: &#x6099;</p>  <!-- Display: 悙 -->

URL Encoding:

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

Encodings

MD5:

671eb0fc9c695cfb942db2504dfbbed8

SHA1:

f64e20deb73cadc1c4da84bca3af3d2ab7257c92

Base64:

5oKZ