Unicode Finder

"鳬" U+9CEC(CJK UNIFIED IDEOGRAPH-9CEC)

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

Programming

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

Web

CSS
\009CEC
HtmlDecimal
鳬
HtmlHexadecimal
鳬
Url
%E9%B3%AC

Code

MD5
506a715f9e01c7d4a71341ce4e29162a
Sha1
8deda6169d0f133623368825d3e034760e24e7e1
Base64
6bOs

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9CEC';
console.log(char);  // Output: 鳬

Java:

char c = '\u9CEC';
System.out.println(c);  // Output: 鳬

JSON:

{"text": "\u9CEC"}  // Value: 鳬

Python:

char = '\u9CEC'
print(char)  # Output: 鳬

Perl:

my $char = "\x{9CEC}";
print $char;  # Output: 鳬

PHP:

$char = "\x{9CEC}";
echo $char;  // Output: 鳬

Ruby:

char = "\u{9CEC}"
puts char  # Output: 鳬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40172;</p>  <!-- Display: 鳬 -->

HTML Hexadecimal:

<p>HTML hex: &#x9CEC;</p>  <!-- Display: 鳬 -->

URL Encoding:

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

Encodings

MD5:

506a715f9e01c7d4a71341ce4e29162a

SHA1:

8deda6169d0f133623368825d3e034760e24e7e1

Base64:

6bOs