Unicode Finder

"鯭" U+9BED(CJK UNIFIED IDEOGRAPH-9BED)

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

Programming

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

Web

CSS
\009BED
HtmlDecimal
鯭
HtmlHexadecimal
鯭
Url
%E9%AF%AD

Code

MD5
3922e84dfc31e44c727e5d5b929dd028
Sha1
ff43384b223e18c47927f6b5b309bdbcef6b5755
Base64
6a+t

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9BED';
console.log(char);  // Output: 鯭

Java:

char c = '\u9BED';
System.out.println(c);  // Output: 鯭

JSON:

{"text": "\u9BED"}  // Value: 鯭

Python:

char = '\u9BED'
print(char)  # Output: 鯭

Perl:

my $char = "\x{9BED}";
print $char;  # Output: 鯭

PHP:

$char = "\x{9BED}";
echo $char;  // Output: 鯭

Ruby:

char = "\u{9BED}"
puts char  # Output: 鯭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39917;</p>  <!-- Display: 鯭 -->

HTML Hexadecimal:

<p>HTML hex: &#x9BED;</p>  <!-- Display: 鯭 -->

URL Encoding:

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

Encodings

MD5:

3922e84dfc31e44c727e5d5b929dd028

SHA1:

ff43384b223e18c47927f6b5b309bdbcef6b5755

Base64:

6a+t