Unicode Finder

"檱" U+6AB1(CJK UNIFIED IDEOGRAPH-6AB1)

U+6AB1
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-6AB1

Programming

C
\u6AB1
JavaScript
\u6AB1
Java
\u6AB1
Json
\u6AB1
Python
\u6AB1
Perl
\x{6AB1}
PHP
\x{6AB1}
Ruby
\u{6AB1}
Rust
\u{6AB1}
Go
\u6AB1

Web

CSS
\006AB1
HtmlDecimal
檱
HtmlHexadecimal
檱
Url
%E6%AA%B1

Code

MD5
4f9a2dc51d225f25b5d128400af09984
Sha1
48d835a4ff553af1df4b9ef7b93e04a1f1c710c8
Base64
5qqx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6AB1';
console.log(char);  // Output: 檱

Java:

char c = '\u6AB1';
System.out.println(c);  // Output: 檱

JSON:

{"text": "\u6AB1"}  // Value: 檱

Python:

char = '\u6AB1'
print(char)  # Output: 檱

Perl:

my $char = "\x{6AB1}";
print $char;  # Output: 檱

PHP:

$char = "\x{6AB1}";
echo $char;  // Output: 檱

Ruby:

char = "\u{6AB1}"
puts char  # Output: 檱

Rust:

let c = '\u{6AB1}';
println!("{}", c);  // Output: 檱

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006AB1";  /* Display: 檱 */
}

HTML Decimal:

<p>HTML decimal: &#27313;</p>  <!-- Display: 檱 -->

HTML Hexadecimal:

<p>HTML hex: &#x6AB1;</p>  <!-- Display: 檱 -->

URL Encoding:

// 檱 URL encoding
https://unicodefinder.com/search.php?query=%E6%AA%B1

Encodings

MD5:

4f9a2dc51d225f25b5d128400af09984

SHA1:

48d835a4ff553af1df4b9ef7b93e04a1f1c710c8

Base64:

5qqx