Unicode Finder

"悒" U+6092(CJK UNIFIED IDEOGRAPH-6092)

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

Programming

C
\u6092
JavaScript
\u6092
Java
\u6092
Json
\u6092
Python
\u6092
Perl
\x{6092}
PHP
\x{6092}
Ruby
\u{6092}
Rust
\u{6092}
Go
\u6092

Web

CSS
\006092
HtmlDecimal
悒
HtmlHexadecimal
悒
Url
%E6%82%92

Code

MD5
27cf7adc2173c886b07ec00ea0bad56a
Sha1
1d050d25654c60181537e50ddaed276b8690a56d
Base64
5oKS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6092';
console.log(char);  // Output: 悒

Java:

char c = '\u6092';
System.out.println(c);  // Output: 悒

JSON:

{"text": "\u6092"}  // Value: 悒

Python:

char = '\u6092'
print(char)  # Output: 悒

Perl:

my $char = "\x{6092}";
print $char;  # Output: 悒

PHP:

$char = "\x{6092}";
echo $char;  // Output: 悒

Ruby:

char = "\u{6092}"
puts char  # Output: 悒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006092";  /* Display: 悒 */
}

HTML Decimal:

<p>HTML decimal: &#24722;</p>  <!-- Display: 悒 -->

HTML Hexadecimal:

<p>HTML hex: &#x6092;</p>  <!-- Display: 悒 -->

URL Encoding:

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

Encodings

MD5:

27cf7adc2173c886b07ec00ea0bad56a

SHA1:

1d050d25654c60181537e50ddaed276b8690a56d

Base64:

5oKS