Unicode Finder

"鳯" U+9CEF(CJK UNIFIED IDEOGRAPH-9CEF)

U+9CEF
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9CEF

Programming

C
\u9CEF
JavaScript
\u9CEF
Java
\u9CEF
Json
\u9CEF
Python
\u9CEF
Perl
\x{9CEF}
PHP
\x{9CEF}
Ruby
\u{9CEF}
Rust
\u{9CEF}
Go
\u9CEF

Web

CSS
\009CEF
HtmlDecimal
鳯
HtmlHexadecimal
鳯
Url
%E9%B3%AF

Code

MD5
1e306fbaa67009fe125254a7ec64f8a4
Sha1
f90c08e85dfe5959b55d76676df6f631fe0af98e
Base64
6bOv

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9CEF';
console.log(char);  // Output: 鳯

Java:

char c = '\u9CEF';
System.out.println(c);  // Output: 鳯

JSON:

{"text": "\u9CEF"}  // Value: 鳯

Python:

char = '\u9CEF'
print(char)  # Output: 鳯

Perl:

my $char = "\x{9CEF}";
print $char;  # Output: 鳯

PHP:

$char = "\x{9CEF}";
echo $char;  // Output: 鳯

Ruby:

char = "\u{9CEF}"
puts char  # Output: 鳯

Rust:

let c = '\u{9CEF}';
println!("{}", c);  // Output: 鳯

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009CEF";  /* Display: 鳯 */
}

HTML Decimal:

<p>HTML decimal: &#40175;</p>  <!-- Display: 鳯 -->

HTML Hexadecimal:

<p>HTML hex: &#x9CEF;</p>  <!-- Display: 鳯 -->

URL Encoding:

// 鳯 URL encoding
https://unicodefinder.com/search.php?query=%E9%B3%AF

Encodings

MD5:

1e306fbaa67009fe125254a7ec64f8a4

SHA1:

f90c08e85dfe5959b55d76676df6f631fe0af98e

Base64:

6bOv