Unicode Finder

"摲" U+6472(CJK UNIFIED IDEOGRAPH-6472)

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

Programming

C
\u6472
JavaScript
\u6472
Java
\u6472
Json
\u6472
Python
\u6472
Perl
\x{6472}
PHP
\x{6472}
Ruby
\u{6472}
Rust
\u{6472}
Go
\u6472

Web

CSS
\006472
HtmlDecimal
摲
HtmlHexadecimal
摲
Url
%E6%91%B2

Code

MD5
ca0824089aa72e78f14c62a98d13bdba
Sha1
dfd8e5a68bd51f5c56e37549f1a64884b3281af6
Base64
5pGy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6472';
console.log(char);  // Output: 摲

Java:

char c = '\u6472';
System.out.println(c);  // Output: 摲

JSON:

{"text": "\u6472"}  // Value: 摲

Python:

char = '\u6472'
print(char)  # Output: 摲

Perl:

my $char = "\x{6472}";
print $char;  # Output: 摲

PHP:

$char = "\x{6472}";
echo $char;  // Output: 摲

Ruby:

char = "\u{6472}"
puts char  # Output: 摲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006472";  /* Display: 摲 */
}

HTML Decimal:

<p>HTML decimal: &#25714;</p>  <!-- Display: 摲 -->

HTML Hexadecimal:

<p>HTML hex: &#x6472;</p>  <!-- Display: 摲 -->

URL Encoding:

// 摲 URL encoding
https://unicodefinder.com/search.php?query=%E6%91%B2

Encodings

MD5:

ca0824089aa72e78f14c62a98d13bdba

SHA1:

dfd8e5a68bd51f5c56e37549f1a64884b3281af6

Base64:

5pGy