Unicode Finder

"蔝" U+851D(CJK UNIFIED IDEOGRAPH-851D)

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

Programming

C
\u851D
JavaScript
\u851D
Java
\u851D
Json
\u851D
Python
\u851D
Perl
\x{851D}
PHP
\x{851D}
Ruby
\u{851D}
Rust
\u{851D}
Go
\u851D

Web

CSS
\00851D
HtmlDecimal
蔝
HtmlHexadecimal
蔝
Url
%E8%94%9D

Code

MD5
eb94627a7b00fa504e6095e62359e578
Sha1
3b62de4d1f9f7316395754abf831c337209ecee6
Base64
6JSd

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u851D';
console.log(char);  // Output: 蔝

Java:

char c = '\u851D';
System.out.println(c);  // Output: 蔝

JSON:

{"text": "\u851D"}  // Value: 蔝

Python:

char = '\u851D'
print(char)  # Output: 蔝

Perl:

my $char = "\x{851D}";
print $char;  # Output: 蔝

PHP:

$char = "\x{851D}";
echo $char;  // Output: 蔝

Ruby:

char = "\u{851D}"
puts char  # Output: 蔝

Rust:

let c = '\u{851D}';
println!("{}", c);  // Output: 蔝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00851D";  /* Display: 蔝 */
}

HTML Decimal:

<p>HTML decimal: &#34077;</p>  <!-- Display: 蔝 -->

HTML Hexadecimal:

<p>HTML hex: &#x851D;</p>  <!-- Display: 蔝 -->

URL Encoding:

// 蔝 URL encoding
https://unicodefinder.com/search.php?query=%E8%94%9D

Encodings

MD5:

eb94627a7b00fa504e6095e62359e578

SHA1:

3b62de4d1f9f7316395754abf831c337209ecee6

Base64:

6JSd