Unicode Finder

"撄" U+6484(CJK UNIFIED IDEOGRAPH-6484)

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

Programming

C
\u6484
JavaScript
\u6484
Java
\u6484
Json
\u6484
Python
\u6484
Perl
\x{6484}
PHP
\x{6484}
Ruby
\u{6484}
Rust
\u{6484}
Go
\u6484

Web

CSS
\006484
HtmlDecimal
撄
HtmlHexadecimal
撄
Url
%E6%92%84

Code

MD5
aac110386f35e6089a860094cbb926a8
Sha1
8dccde878c9108fbf22c947b2e77228d013cb980
Base64
5pKE

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6484';
console.log(char);  // Output: 撄

Java:

char c = '\u6484';
System.out.println(c);  // Output: 撄

JSON:

{"text": "\u6484"}  // Value: 撄

Python:

char = '\u6484'
print(char)  # Output: 撄

Perl:

my $char = "\x{6484}";
print $char;  # Output: 撄

PHP:

$char = "\x{6484}";
echo $char;  // Output: 撄

Ruby:

char = "\u{6484}"
puts char  # Output: 撄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006484";  /* Display: 撄 */
}

HTML Decimal:

<p>HTML decimal: &#25732;</p>  <!-- Display: 撄 -->

HTML Hexadecimal:

<p>HTML hex: &#x6484;</p>  <!-- Display: 撄 -->

URL Encoding:

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

Encodings

MD5:

aac110386f35e6089a860094cbb926a8

SHA1:

8dccde878c9108fbf22c947b2e77228d013cb980

Base64:

5pKE