Unicode Finder

"向" U+5411(CJK UNIFIED IDEOGRAPH-5411)

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

Programming

C
\u5411
JavaScript
\u5411
Java
\u5411
Json
\u5411
Python
\u5411
Perl
\x{5411}
PHP
\x{5411}
Ruby
\u{5411}
Rust
\u{5411}
Go
\u5411

Web

CSS
\005411
HtmlDecimal
向
HtmlHexadecimal
向
Url
%E5%90%91

Code

MD5
a510ac9d05813b2434cf6596b5bbf685
Sha1
6dbcceb7f0060a797fccced6f80df681bc6ee5ce
Base64
5ZCR

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5411';
console.log(char);  // Output: 向

Java:

char c = '\u5411';
System.out.println(c);  // Output: 向

JSON:

{"text": "\u5411"}  // Value: 向

Python:

char = '\u5411'
print(char)  # Output: 向

Perl:

my $char = "\x{5411}";
print $char;  # Output: 向

PHP:

$char = "\x{5411}";
echo $char;  // Output: 向

Ruby:

char = "\u{5411}"
puts char  # Output: 向

Rust:

let c = '\u{5411}';
println!("{}", c);  // Output: 向

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005411";  /* Display: 向 */
}

HTML Decimal:

<p>HTML decimal: &#21521;</p>  <!-- Display: 向 -->

HTML Hexadecimal:

<p>HTML hex: &#x5411;</p>  <!-- Display: 向 -->

URL Encoding:

// 向 URL encoding
https://unicodefinder.com/search.php?query=%E5%90%91

Encodings

MD5:

a510ac9d05813b2434cf6596b5bbf685

SHA1:

6dbcceb7f0060a797fccced6f80df681bc6ee5ce

Base64:

5ZCR