Unicode Finder

"鵆" U+9D46(CJK UNIFIED IDEOGRAPH-9D46)

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

Programming

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

Web

CSS
\009D46
HtmlDecimal
鵆
HtmlHexadecimal
鵆
Url
%E9%B5%86

Code

MD5
ff9f3f3e35b5815be5ef4d23cbe1df52
Sha1
445f3a38b2b7d583d2c414a6cf5ac957034be19d
Base64
6bWG

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9D46';
console.log(char);  // Output: 鵆

Java:

char c = '\u9D46';
System.out.println(c);  // Output: 鵆

JSON:

{"text": "\u9D46"}  // Value: 鵆

Python:

char = '\u9D46'
print(char)  # Output: 鵆

Perl:

my $char = "\x{9D46}";
print $char;  # Output: 鵆

PHP:

$char = "\x{9D46}";
echo $char;  // Output: 鵆

Ruby:

char = "\u{9D46}"
puts char  # Output: 鵆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40262;</p>  <!-- Display: 鵆 -->

HTML Hexadecimal:

<p>HTML hex: &#x9D46;</p>  <!-- Display: 鵆 -->

URL Encoding:

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

Encodings

MD5:

ff9f3f3e35b5815be5ef4d23cbe1df52

SHA1:

445f3a38b2b7d583d2c414a6cf5ac957034be19d

Base64:

6bWG