Unicode Finder

"斫" U+65AB(CJK UNIFIED IDEOGRAPH-65AB)

U+65AB
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-65AB

Programming

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

Web

CSS
\0065AB
HtmlDecimal
斫
HtmlHexadecimal
斫
Url
%E6%96%AB

Code

MD5
f5922d98aea86bbfcf38b16f1a0f7c56
Sha1
1414f257d584e93da2e1dc2e67d0374206d6fc34
Base64
5par

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u65AB';
console.log(char);  // Output: 斫

Java:

char c = '\u65AB';
System.out.println(c);  // Output: 斫

JSON:

{"text": "\u65AB"}  // Value: 斫

Python:

char = '\u65AB'
print(char)  # Output: 斫

Perl:

my $char = "\x{65AB}";
print $char;  # Output: 斫

PHP:

$char = "\x{65AB}";
echo $char;  // Output: 斫

Ruby:

char = "\u{65AB}"
puts char  # Output: 斫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26027;</p>  <!-- Display: 斫 -->

HTML Hexadecimal:

<p>HTML hex: &#x65AB;</p>  <!-- Display: 斫 -->

URL Encoding:

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

Encodings

MD5:

f5922d98aea86bbfcf38b16f1a0f7c56

SHA1:

1414f257d584e93da2e1dc2e67d0374206d6fc34

Base64:

5par