Unicode Finder

"撕" U+6495(CJK UNIFIED IDEOGRAPH-6495)

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

Programming

C
\u6495
JavaScript
\u6495
Java
\u6495
Json
\u6495
Python
\u6495
Perl
\x{6495}
PHP
\x{6495}
Ruby
\u{6495}
Rust
\u{6495}
Go
\u6495

Web

CSS
\006495
HtmlDecimal
撕
HtmlHexadecimal
撕
Url
%E6%92%95

Code

MD5
dfec6c20cfc783ae54abcf3556b804bd
Sha1
ca1d12f25fb6a2c4025bcd8df5fe17c662ce270a
Base64
5pKV

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6495';
console.log(char);  // Output: 撕

Java:

char c = '\u6495';
System.out.println(c);  // Output: 撕

JSON:

{"text": "\u6495"}  // Value: 撕

Python:

char = '\u6495'
print(char)  # Output: 撕

Perl:

my $char = "\x{6495}";
print $char;  # Output: 撕

PHP:

$char = "\x{6495}";
echo $char;  // Output: 撕

Ruby:

char = "\u{6495}"
puts char  # Output: 撕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006495";  /* Display: 撕 */
}

HTML Decimal:

<p>HTML decimal: &#25749;</p>  <!-- Display: 撕 -->

HTML Hexadecimal:

<p>HTML hex: &#x6495;</p>  <!-- Display: 撕 -->

URL Encoding:

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

Encodings

MD5:

dfec6c20cfc783ae54abcf3556b804bd

SHA1:

ca1d12f25fb6a2c4025bcd8df5fe17c662ce270a

Base64:

5pKV