Unicode Finder

"椡" U+6921(CJK UNIFIED IDEOGRAPH-6921)

U+6921
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-6921

Programming

C
\u6921
JavaScript
\u6921
Java
\u6921
Json
\u6921
Python
\u6921
Perl
\x{6921}
PHP
\x{6921}
Ruby
\u{6921}
Rust
\u{6921}
Go
\u6921

Web

CSS
\006921
HtmlDecimal
椡
HtmlHexadecimal
椡
Url
%E6%A4%A1

Code

MD5
b16f8cd27519efb7080cdadb7429e47d
Sha1
4c9ded826fdbaf8e64a11dbd3efeeba4bac31327
Base64
5qSh

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6921';
console.log(char);  // Output: 椡

Java:

char c = '\u6921';
System.out.println(c);  // Output: 椡

JSON:

{"text": "\u6921"}  // Value: 椡

Python:

char = '\u6921'
print(char)  # Output: 椡

Perl:

my $char = "\x{6921}";
print $char;  # Output: 椡

PHP:

$char = "\x{6921}";
echo $char;  // Output: 椡

Ruby:

char = "\u{6921}"
puts char  # Output: 椡

Rust:

let c = '\u{6921}';
println!("{}", c);  // Output: 椡

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006921";  /* Display: 椡 */
}

HTML Decimal:

<p>HTML decimal: &#26913;</p>  <!-- Display: 椡 -->

HTML Hexadecimal:

<p>HTML hex: &#x6921;</p>  <!-- Display: 椡 -->

URL Encoding:

// 椡 URL encoding
https://unicodefinder.com/search.php?query=%E6%A4%A1

Encodings

MD5:

b16f8cd27519efb7080cdadb7429e47d

SHA1:

4c9ded826fdbaf8e64a11dbd3efeeba4bac31327

Base64:

5qSh