Unicode Finder

"骿" U+9ABF(CJK UNIFIED IDEOGRAPH-9ABF)

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

Programming

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

Web

CSS
\009ABF
HtmlDecimal
骿
HtmlHexadecimal
骿
Url
%E9%AA%BF

Code

MD5
fbb03b6a78bddcf26bc31dbff16eff8a
Sha1
c9a6df4c703b1ea5459f5500b5a15749b7524113
Base64
6aq/

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9ABF';
console.log(char);  // Output: 骿

Java:

char c = '\u9ABF';
System.out.println(c);  // Output: 骿

JSON:

{"text": "\u9ABF"}  // Value: 骿

Python:

char = '\u9ABF'
print(char)  # Output: 骿

Perl:

my $char = "\x{9ABF}";
print $char;  # Output: 骿

PHP:

$char = "\x{9ABF}";
echo $char;  // Output: 骿

Ruby:

char = "\u{9ABF}"
puts char  # Output: 骿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39615;</p>  <!-- Display: 骿 -->

HTML Hexadecimal:

<p>HTML hex: &#x9ABF;</p>  <!-- Display: 骿 -->

URL Encoding:

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

Encodings

MD5:

fbb03b6a78bddcf26bc31dbff16eff8a

SHA1:

c9a6df4c703b1ea5459f5500b5a15749b7524113

Base64:

6aq/