Unicode Finder

"斲" U+65B2(CJK UNIFIED IDEOGRAPH-65B2)

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

Programming

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

Web

CSS
\0065B2
HtmlDecimal
斲
HtmlHexadecimal
斲
Url
%E6%96%B2

Code

MD5
83c1be6b8b2871d3e4cd1c25b094a061
Sha1
173b539a97ab2528bc8435edf3cb4fc8e0264691
Base64
5pay

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u65B2';
console.log(char);  // Output: 斲

Java:

char c = '\u65B2';
System.out.println(c);  // Output: 斲

JSON:

{"text": "\u65B2"}  // Value: 斲

Python:

char = '\u65B2'
print(char)  # Output: 斲

Perl:

my $char = "\x{65B2}";
print $char;  # Output: 斲

PHP:

$char = "\x{65B2}";
echo $char;  // Output: 斲

Ruby:

char = "\u{65B2}"
puts char  # Output: 斲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26034;</p>  <!-- Display: 斲 -->

HTML Hexadecimal:

<p>HTML hex: &#x65B2;</p>  <!-- Display: 斲 -->

URL Encoding:

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

Encodings

MD5:

83c1be6b8b2871d3e4cd1c25b094a061

SHA1:

173b539a97ab2528bc8435edf3cb4fc8e0264691

Base64:

5pay