Unicode Finder

"骼" U+9ABC(CJK UNIFIED IDEOGRAPH-9ABC)

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

Programming

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

Web

CSS
\009ABC
HtmlDecimal
骼
HtmlHexadecimal
骼
Url
%E9%AA%BC

Code

MD5
42e1223dbe50bf541c122a552ac77529
Sha1
4df3c2b7a688feba7d05332e73fd8d7bc7960c05
Base64
6aq8

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9ABC';
console.log(char);  // Output: 骼

Java:

char c = '\u9ABC';
System.out.println(c);  // Output: 骼

JSON:

{"text": "\u9ABC"}  // Value: 骼

Python:

char = '\u9ABC'
print(char)  # Output: 骼

Perl:

my $char = "\x{9ABC}";
print $char;  # Output: 骼

PHP:

$char = "\x{9ABC}";
echo $char;  // Output: 骼

Ruby:

char = "\u{9ABC}"
puts char  # Output: 骼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39612;</p>  <!-- Display: 骼 -->

HTML Hexadecimal:

<p>HTML hex: &#x9ABC;</p>  <!-- Display: 骼 -->

URL Encoding:

// 骼 URL encoding
https://unicodefinder.com/search.php?query=%E9%AA%BC

Encodings

MD5:

42e1223dbe50bf541c122a552ac77529

SHA1:

4df3c2b7a688feba7d05332e73fd8d7bc7960c05

Base64:

6aq8