Unicode Finder

"蘿" U+863F(CJK UNIFIED IDEOGRAPH-863F)

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

Programming

C
\u863F
JavaScript
\u863F
Java
\u863F
Json
\u863F
Python
\u863F
Perl
\x{863F}
PHP
\x{863F}
Ruby
\u{863F}
Rust
\u{863F}
Go
\u863F

Web

CSS
\00863F
HtmlDecimal
蘿
HtmlHexadecimal
蘿
Url
%E8%98%BF

Code

MD5
ccb4c2bfea855faad7c266690859db86
Sha1
d90a5904c351d7df43b631b51e0a9f4dfd5ea2c8
Base64
6Ji/

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u863F';
console.log(char);  // Output: 蘿

Java:

char c = '\u863F';
System.out.println(c);  // Output: 蘿

JSON:

{"text": "\u863F"}  // Value: 蘿

Python:

char = '\u863F'
print(char)  # Output: 蘿

Perl:

my $char = "\x{863F}";
print $char;  # Output: 蘿

PHP:

$char = "\x{863F}";
echo $char;  // Output: 蘿

Ruby:

char = "\u{863F}"
puts char  # Output: 蘿

Rust:

let c = '\u{863F}';
println!("{}", c);  // Output: 蘿

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00863F";  /* Display: 蘿 */
}

HTML Decimal:

<p>HTML decimal: &#34367;</p>  <!-- Display: 蘿 -->

HTML Hexadecimal:

<p>HTML hex: &#x863F;</p>  <!-- Display: 蘿 -->

URL Encoding:

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

Encodings

MD5:

ccb4c2bfea855faad7c266690859db86

SHA1:

d90a5904c351d7df43b631b51e0a9f4dfd5ea2c8

Base64:

6Ji/