Unicode Finder

"鳳" U+9CF3(CJK UNIFIED IDEOGRAPH-9CF3)

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

Programming

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

Web

CSS
\009CF3
HtmlDecimal
鳳
HtmlHexadecimal
鳳
Url
%E9%B3%B3

Code

MD5
4fe7928576b28581b701e04c4d5364cc
Sha1
4a4ff1a1a53a8fa007f01656730941646f37d58f
Base64
6bOz

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9CF3';
console.log(char);  // Output: 鳳

Java:

char c = '\u9CF3';
System.out.println(c);  // Output: 鳳

JSON:

{"text": "\u9CF3"}  // Value: 鳳

Python:

char = '\u9CF3'
print(char)  # Output: 鳳

Perl:

my $char = "\x{9CF3}";
print $char;  # Output: 鳳

PHP:

$char = "\x{9CF3}";
echo $char;  // Output: 鳳

Ruby:

char = "\u{9CF3}"
puts char  # Output: 鳳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40179;</p>  <!-- Display: 鳳 -->

HTML Hexadecimal:

<p>HTML hex: &#x9CF3;</p>  <!-- Display: 鳳 -->

URL Encoding:

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

Encodings

MD5:

4fe7928576b28581b701e04c4d5364cc

SHA1:

4a4ff1a1a53a8fa007f01656730941646f37d58f

Base64:

6bOz