Unicode Finder

"斺" U+65BA(CJK UNIFIED IDEOGRAPH-65BA)

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

Programming

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

Web

CSS
\0065BA
HtmlDecimal
斺
HtmlHexadecimal
斺
Url
%E6%96%BA

Code

MD5
881354222269a7df513c6899b5e33acf
Sha1
cde20a40bb22abb4a2f293b24ee8d59516450673
Base64
5pa6

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u65BA';
console.log(char);  // Output: 斺

Java:

char c = '\u65BA';
System.out.println(c);  // Output: 斺

JSON:

{"text": "\u65BA"}  // Value: 斺

Python:

char = '\u65BA'
print(char)  # Output: 斺

Perl:

my $char = "\x{65BA}";
print $char;  # Output: 斺

PHP:

$char = "\x{65BA}";
echo $char;  // Output: 斺

Ruby:

char = "\u{65BA}"
puts char  # Output: 斺

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26042;</p>  <!-- Display: 斺 -->

HTML Hexadecimal:

<p>HTML hex: &#x65BA;</p>  <!-- Display: 斺 -->

URL Encoding:

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

Encodings

MD5:

881354222269a7df513c6899b5e33acf

SHA1:

cde20a40bb22abb4a2f293b24ee8d59516450673

Base64:

5pa6