Unicode Finder

"撒" U+6492(CJK UNIFIED IDEOGRAPH-6492)

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

Programming

C
\u6492
JavaScript
\u6492
Java
\u6492
Json
\u6492
Python
\u6492
Perl
\x{6492}
PHP
\x{6492}
Ruby
\u{6492}
Rust
\u{6492}
Go
\u6492

Web

CSS
\006492
HtmlDecimal
撒
HtmlHexadecimal
撒
Url
%E6%92%92

Code

MD5
a66646fb9e861196d5a73bcd3bf08376
Sha1
4dab5d0f510f0a8a7058a494b342d56fc21e7b0f
Base64
5pKS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6492';
console.log(char);  // Output: 撒

Java:

char c = '\u6492';
System.out.println(c);  // Output: 撒

JSON:

{"text": "\u6492"}  // Value: 撒

Python:

char = '\u6492'
print(char)  # Output: 撒

Perl:

my $char = "\x{6492}";
print $char;  # Output: 撒

PHP:

$char = "\x{6492}";
echo $char;  // Output: 撒

Ruby:

char = "\u{6492}"
puts char  # Output: 撒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006492";  /* Display: 撒 */
}

HTML Decimal:

<p>HTML decimal: &#25746;</p>  <!-- Display: 撒 -->

HTML Hexadecimal:

<p>HTML hex: &#x6492;</p>  <!-- Display: 撒 -->

URL Encoding:

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

Encodings

MD5:

a66646fb9e861196d5a73bcd3bf08376

SHA1:

4dab5d0f510f0a8a7058a494b342d56fc21e7b0f

Base64:

5pKS