Unicode Finder

"軏" U+8ECF(CJK UNIFIED IDEOGRAPH-8ECF)

U+8ECF
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8ECF

Programming

C
\u8ECF
JavaScript
\u8ECF
Java
\u8ECF
Json
\u8ECF
Python
\u8ECF
Perl
\x{8ECF}
PHP
\x{8ECF}
Ruby
\u{8ECF}
Rust
\u{8ECF}
Go
\u8ECF

Web

CSS
\008ECF
HtmlDecimal
軏
HtmlHexadecimal
軏
Url
%E8%BB%8F

Code

MD5
6fd0b3e2149235e4f314c5fdbb0ffb79
Sha1
470b61ef77f0ad077e8500954bffc38aa760dffa
Base64
6LuP

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8ECF';
console.log(char);  // Output: 軏

Java:

char c = '\u8ECF';
System.out.println(c);  // Output: 軏

JSON:

{"text": "\u8ECF"}  // Value: 軏

Python:

char = '\u8ECF'
print(char)  # Output: 軏

Perl:

my $char = "\x{8ECF}";
print $char;  # Output: 軏

PHP:

$char = "\x{8ECF}";
echo $char;  // Output: 軏

Ruby:

char = "\u{8ECF}"
puts char  # Output: 軏

Rust:

let c = '\u{8ECF}';
println!("{}", c);  // Output: 軏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008ECF";  /* Display: 軏 */
}

HTML Decimal:

<p>HTML decimal: &#36559;</p>  <!-- Display: 軏 -->

HTML Hexadecimal:

<p>HTML hex: &#x8ECF;</p>  <!-- Display: 軏 -->

URL Encoding:

// 軏 URL encoding
https://unicodefinder.com/search.php?query=%E8%BB%8F

Encodings

MD5:

6fd0b3e2149235e4f314c5fdbb0ffb79

SHA1:

470b61ef77f0ad077e8500954bffc38aa760dffa

Base64:

6LuP