Unicode Finder

"椒" U+6912(CJK UNIFIED IDEOGRAPH-6912)

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

Programming

C
\u6912
JavaScript
\u6912
Java
\u6912
Json
\u6912
Python
\u6912
Perl
\x{6912}
PHP
\x{6912}
Ruby
\u{6912}
Rust
\u{6912}
Go
\u6912

Web

CSS
\006912
HtmlDecimal
椒
HtmlHexadecimal
椒
Url
%E6%A4%92

Code

MD5
4227c372b0e17df08c9347c069e43073
Sha1
54f05e88a3ceae6b9faa14cf2b176d1bce02587a
Base64
5qSS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6912';
console.log(char);  // Output: 椒

Java:

char c = '\u6912';
System.out.println(c);  // Output: 椒

JSON:

{"text": "\u6912"}  // Value: 椒

Python:

char = '\u6912'
print(char)  # Output: 椒

Perl:

my $char = "\x{6912}";
print $char;  # Output: 椒

PHP:

$char = "\x{6912}";
echo $char;  // Output: 椒

Ruby:

char = "\u{6912}"
puts char  # Output: 椒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006912";  /* Display: 椒 */
}

HTML Decimal:

<p>HTML decimal: &#26898;</p>  <!-- Display: 椒 -->

HTML Hexadecimal:

<p>HTML hex: &#x6912;</p>  <!-- Display: 椒 -->

URL Encoding:

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

Encodings

MD5:

4227c372b0e17df08c9347c069e43073

SHA1:

54f05e88a3ceae6b9faa14cf2b176d1bce02587a

Base64:

5qSS