Unicode Finder

"斬" U+65AC(CJK UNIFIED IDEOGRAPH-65AC)

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

Programming

C
\u65AC
JavaScript
\u65AC
Java
\u65AC
Json
\u65AC
Python
\u65AC
Perl
\x{65AC}
PHP
\x{65AC}
Ruby
\u{65AC}
Rust
\u{65AC}
Go
\u65AC

Web

CSS
\0065AC
HtmlDecimal
斬
HtmlHexadecimal
斬
Url
%E6%96%AC

Code

MD5
9fa189705a0efb5f52e14a55009a5efb
Sha1
02b9ec7c36ea4ba96152c163412ef62bcb9d9dc5
Base64
5pas

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u65AC';
console.log(char);  // Output: 斬

Java:

char c = '\u65AC';
System.out.println(c);  // Output: 斬

JSON:

{"text": "\u65AC"}  // Value: 斬

Python:

char = '\u65AC'
print(char)  # Output: 斬

Perl:

my $char = "\x{65AC}";
print $char;  # Output: 斬

PHP:

$char = "\x{65AC}";
echo $char;  // Output: 斬

Ruby:

char = "\u{65AC}"
puts char  # Output: 斬

Rust:

let c = '\u{65AC}';
println!("{}", c);  // Output: 斬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0065AC";  /* Display: 斬 */
}

HTML Decimal:

<p>HTML decimal: &#26028;</p>  <!-- Display: 斬 -->

HTML Hexadecimal:

<p>HTML hex: &#x65AC;</p>  <!-- Display: 斬 -->

URL Encoding:

// 斬 URL encoding
https://unicodefinder.com/search.php?query=%E6%96%AC

Encodings

MD5:

9fa189705a0efb5f52e14a55009a5efb

SHA1:

02b9ec7c36ea4ba96152c163412ef62bcb9d9dc5

Base64:

5pas