Unicode Finder

"驍" U+9A4D(CJK UNIFIED IDEOGRAPH-9A4D)

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

Programming

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

Web

CSS
\009A4D
HtmlDecimal
驍
HtmlHexadecimal
驍
Url
%E9%A9%8D

Code

MD5
501eda8769a43601bb3ea96dc4e5414f
Sha1
45cc24c526c70071d778dc9f7b0ac35e60307d99
Base64
6amN

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9A4D';
console.log(char);  // Output: 驍

Java:

char c = '\u9A4D';
System.out.println(c);  // Output: 驍

JSON:

{"text": "\u9A4D"}  // Value: 驍

Python:

char = '\u9A4D'
print(char)  # Output: 驍

Perl:

my $char = "\x{9A4D}";
print $char;  # Output: 驍

PHP:

$char = "\x{9A4D}";
echo $char;  // Output: 驍

Ruby:

char = "\u{9A4D}"
puts char  # Output: 驍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39501;</p>  <!-- Display: 驍 -->

HTML Hexadecimal:

<p>HTML hex: &#x9A4D;</p>  <!-- Display: 驍 -->

URL Encoding:

// 驍 URL encoding
https://unicodefinder.com/search.php?query=%E9%A9%8D

Encodings

MD5:

501eda8769a43601bb3ea96dc4e5414f

SHA1:

45cc24c526c70071d778dc9f7b0ac35e60307d99

Base64:

6amN