Unicode Finder

"栀" U+6800(CJK UNIFIED IDEOGRAPH-6800)

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

Programming

C
\u6800
JavaScript
\u6800
Java
\u6800
Json
\u6800
Python
\u6800
Perl
\x{6800}
PHP
\x{6800}
Ruby
\u{6800}
Rust
\u{6800}
Go
\u6800

Web

CSS
\006800
HtmlDecimal
栀
HtmlHexadecimal
栀
Url
%E6%A0%80

Code

MD5
4b67633b32b41d3f65e3d3d8928d129e
Sha1
499b429ce7415a13e48a0f29a53cef345323f274
Base64
5qCA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6800';
console.log(char);  // Output: 栀

Java:

char c = '\u6800';
System.out.println(c);  // Output: 栀

JSON:

{"text": "\u6800"}  // Value: 栀

Python:

char = '\u6800'
print(char)  # Output: 栀

Perl:

my $char = "\x{6800}";
print $char;  # Output: 栀

PHP:

$char = "\x{6800}";
echo $char;  // Output: 栀

Ruby:

char = "\u{6800}"
puts char  # Output: 栀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006800";  /* Display: 栀 */
}

HTML Decimal:

<p>HTML decimal: &#26624;</p>  <!-- Display: 栀 -->

HTML Hexadecimal:

<p>HTML hex: &#x6800;</p>  <!-- Display: 栀 -->

URL Encoding:

// 栀 URL encoding
https://unicodefinder.com/search.php?query=%E6%A0%80

Encodings

MD5:

4b67633b32b41d3f65e3d3d8928d129e

SHA1:

499b429ce7415a13e48a0f29a53cef345323f274

Base64:

5qCA