Unicode Finder

"鲓" U+9C93(CJK UNIFIED IDEOGRAPH-9C93)

U+9C93
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-9C93

Programming

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

Web

CSS
\009C93
HtmlDecimal
鲓
HtmlHexadecimal
鲓
Url
%E9%B2%93

Code

MD5
032afe3eb68e086861814f2de4b5ce2a
Sha1
e6661c6fa39abd054d0092b11ef4b08b5939091a
Base64
6bKT

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9C93';
console.log(char);  // Output: 鲓

Java:

char c = '\u9C93';
System.out.println(c);  // Output: 鲓

JSON:

{"text": "\u9C93"}  // Value: 鲓

Python:

char = '\u9C93'
print(char)  # Output: 鲓

Perl:

my $char = "\x{9C93}";
print $char;  # Output: 鲓

PHP:

$char = "\x{9C93}";
echo $char;  // Output: 鲓

Ruby:

char = "\u{9C93}"
puts char  # Output: 鲓

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#40083;</p>  <!-- Display: 鲓 -->

HTML Hexadecimal:

<p>HTML hex: &#x9C93;</p>  <!-- Display: 鲓 -->

URL Encoding:

// 鲓 URL encoding
https://unicodefinder.com/search.php?query=%E9%B2%93

Encodings

MD5:

032afe3eb68e086861814f2de4b5ce2a

SHA1:

e6661c6fa39abd054d0092b11ef4b08b5939091a

Base64:

6bKT