Unicode Finder

"椤" U+6924(CJK UNIFIED IDEOGRAPH-6924)

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

Programming

C
\u6924
JavaScript
\u6924
Java
\u6924
Json
\u6924
Python
\u6924
Perl
\x{6924}
PHP
\x{6924}
Ruby
\u{6924}
Rust
\u{6924}
Go
\u6924

Web

CSS
\006924
HtmlDecimal
椤
HtmlHexadecimal
椤
Url
%E6%A4%A4

Code

MD5
f45aaeaa8cde282444b44590da18fe17
Sha1
65415d95bf36017d4d4411825ce9f571222810da
Base64
5qSk

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6924';
console.log(char);  // Output: 椤

Java:

char c = '\u6924';
System.out.println(c);  // Output: 椤

JSON:

{"text": "\u6924"}  // Value: 椤

Python:

char = '\u6924'
print(char)  # Output: 椤

Perl:

my $char = "\x{6924}";
print $char;  # Output: 椤

PHP:

$char = "\x{6924}";
echo $char;  // Output: 椤

Ruby:

char = "\u{6924}"
puts char  # Output: 椤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006924";  /* Display: 椤 */
}

HTML Decimal:

<p>HTML decimal: &#26916;</p>  <!-- Display: 椤 -->

HTML Hexadecimal:

<p>HTML hex: &#x6924;</p>  <!-- Display: 椤 -->

URL Encoding:

// 椤 URL encoding
https://unicodefinder.com/search.php?query=%E6%A4%A4

Encodings

MD5:

f45aaeaa8cde282444b44590da18fe17

SHA1:

65415d95bf36017d4d4411825ce9f571222810da

Base64:

5qSk