Unicode Finder

"悫" U+60AB(CJK UNIFIED IDEOGRAPH-60AB)

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

Programming

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

Web

CSS
\0060AB
HtmlDecimal
悫
HtmlHexadecimal
悫
Url
%E6%82%AB

Code

MD5
c52a0aa872311fc14adaf4abde7eab01
Sha1
5769168aaf376ca8e19b3c3c743ae91095f4def0
Base64
5oKr

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u60AB';
console.log(char);  // Output: 悫

Java:

char c = '\u60AB';
System.out.println(c);  // Output: 悫

JSON:

{"text": "\u60AB"}  // Value: 悫

Python:

char = '\u60AB'
print(char)  # Output: 悫

Perl:

my $char = "\x{60AB}";
print $char;  # Output: 悫

PHP:

$char = "\x{60AB}";
echo $char;  // Output: 悫

Ruby:

char = "\u{60AB}"
puts char  # Output: 悫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24747;</p>  <!-- Display: 悫 -->

HTML Hexadecimal:

<p>HTML hex: &#x60AB;</p>  <!-- Display: 悫 -->

URL Encoding:

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

Encodings

MD5:

c52a0aa872311fc14adaf4abde7eab01

SHA1:

5769168aaf376ca8e19b3c3c743ae91095f4def0

Base64:

5oKr