Unicode Finder

"悓" U+6093(CJK UNIFIED IDEOGRAPH-6093)

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

Programming

C
\u6093
JavaScript
\u6093
Java
\u6093
Json
\u6093
Python
\u6093
Perl
\x{6093}
PHP
\x{6093}
Ruby
\u{6093}
Rust
\u{6093}
Go
\u6093

Web

CSS
\006093
HtmlDecimal
悓
HtmlHexadecimal
悓
Url
%E6%82%93

Code

MD5
0f19e901ebb3d5e0cb13d03aee71fde7
Sha1
b9ab90765732d3aaf61fa5f5e24dc1b0fa195f7d
Base64
5oKT

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6093';
console.log(char);  // Output: 悓

Java:

char c = '\u6093';
System.out.println(c);  // Output: 悓

JSON:

{"text": "\u6093"}  // Value: 悓

Python:

char = '\u6093'
print(char)  # Output: 悓

Perl:

my $char = "\x{6093}";
print $char;  # Output: 悓

PHP:

$char = "\x{6093}";
echo $char;  // Output: 悓

Ruby:

char = "\u{6093}"
puts char  # Output: 悓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006093";  /* Display: 悓 */
}

HTML Decimal:

<p>HTML decimal: &#24723;</p>  <!-- Display: 悓 -->

HTML Hexadecimal:

<p>HTML hex: &#x6093;</p>  <!-- Display: 悓 -->

URL Encoding:

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

Encodings

MD5:

0f19e901ebb3d5e0cb13d03aee71fde7

SHA1:

b9ab90765732d3aaf61fa5f5e24dc1b0fa195f7d

Base64:

5oKT