Unicode Finder

"蔻" U+853B(CJK UNIFIED IDEOGRAPH-853B)

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

Programming

C
\u853B
JavaScript
\u853B
Java
\u853B
Json
\u853B
Python
\u853B
Perl
\x{853B}
PHP
\x{853B}
Ruby
\u{853B}
Rust
\u{853B}
Go
\u853B

Web

CSS
\00853B
HtmlDecimal
蔻
HtmlHexadecimal
蔻
Url
%E8%94%BB

Code

MD5
80d44190af2e20330a8c665fb0290d5e
Sha1
b492af2e94eec5beceba42a86249d16107900675
Base64
6JS7

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u853B';
console.log(char);  // Output: 蔻

Java:

char c = '\u853B';
System.out.println(c);  // Output: 蔻

JSON:

{"text": "\u853B"}  // Value: 蔻

Python:

char = '\u853B'
print(char)  # Output: 蔻

Perl:

my $char = "\x{853B}";
print $char;  # Output: 蔻

PHP:

$char = "\x{853B}";
echo $char;  // Output: 蔻

Ruby:

char = "\u{853B}"
puts char  # Output: 蔻

Rust:

let c = '\u{853B}';
println!("{}", c);  // Output: 蔻

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00853B";  /* Display: 蔻 */
}

HTML Decimal:

<p>HTML decimal: &#34107;</p>  <!-- Display: 蔻 -->

HTML Hexadecimal:

<p>HTML hex: &#x853B;</p>  <!-- Display: 蔻 -->

URL Encoding:

// 蔻 URL encoding
https://unicodefinder.com/search.php?query=%E8%94%BB

Encodings

MD5:

80d44190af2e20330a8c665fb0290d5e

SHA1:

b492af2e94eec5beceba42a86249d16107900675

Base64:

6JS7