Unicode Finder

"鵯" U+9D6F(CJK UNIFIED IDEOGRAPH-9D6F)

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

Programming

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

Web

CSS
\009D6F
HtmlDecimal
鵯
HtmlHexadecimal
鵯
Url
%E9%B5%AF

Code

MD5
f16887fbe4656a68de767755f8100c24
Sha1
fb110791b700d25b6aeb5fbc210112cb994c7715
Base64
6bWv

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9D6F';
console.log(char);  // Output: 鵯

Java:

char c = '\u9D6F';
System.out.println(c);  // Output: 鵯

JSON:

{"text": "\u9D6F"}  // Value: 鵯

Python:

char = '\u9D6F'
print(char)  # Output: 鵯

Perl:

my $char = "\x{9D6F}";
print $char;  # Output: 鵯

PHP:

$char = "\x{9D6F}";
echo $char;  // Output: 鵯

Ruby:

char = "\u{9D6F}"
puts char  # Output: 鵯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40303;</p>  <!-- Display: 鵯 -->

HTML Hexadecimal:

<p>HTML hex: &#x9D6F;</p>  <!-- Display: 鵯 -->

URL Encoding:

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

Encodings

MD5:

f16887fbe4656a68de767755f8100c24

SHA1:

fb110791b700d25b6aeb5fbc210112cb994c7715

Base64:

6bWv