Unicode Finder

"蘭" U+862D(CJK UNIFIED IDEOGRAPH-862D)

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

Programming

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

Web

CSS
\00862D
HtmlDecimal
蘭
HtmlHexadecimal
蘭
Url
%E8%98%AD

Code

MD5
cd0edb86e9dc56f3c7edb917a2e9903c
Sha1
9f13d59191b31073cc1a5764c942413ef7f8599c
Base64
6Jit

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u862D';
console.log(char);  // Output: 蘭

Java:

char c = '\u862D';
System.out.println(c);  // Output: 蘭

JSON:

{"text": "\u862D"}  // Value: 蘭

Python:

char = '\u862D'
print(char)  # Output: 蘭

Perl:

my $char = "\x{862D}";
print $char;  # Output: 蘭

PHP:

$char = "\x{862D}";
echo $char;  // Output: 蘭

Ruby:

char = "\u{862D}"
puts char  # Output: 蘭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34349;</p>  <!-- Display: 蘭 -->

HTML Hexadecimal:

<p>HTML hex: &#x862D;</p>  <!-- Display: 蘭 -->

URL Encoding:

// 蘭 URL encoding
https://unicodefinder.com/search.php?query=%E8%98%AD

Encodings

MD5:

cd0edb86e9dc56f3c7edb917a2e9903c

SHA1:

9f13d59191b31073cc1a5764c942413ef7f8599c

Base64:

6Jit