Unicode Finder

"夣" U+5923(CJK UNIFIED IDEOGRAPH-5923)

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

Programming

C
\u5923
JavaScript
\u5923
Java
\u5923
Json
\u5923
Python
\u5923
Perl
\x{5923}
PHP
\x{5923}
Ruby
\u{5923}
Rust
\u{5923}
Go
\u5923

Web

CSS
\005923
HtmlDecimal
夣
HtmlHexadecimal
夣
Url
%E5%A4%A3

Code

MD5
8e01383d66a1113ce01feb0911938ee4
Sha1
9cb2d89186ebbd3d16a1fdad2efdd8038b4d6f75
Base64
5aSj

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5923';
console.log(char);  // Output: 夣

Java:

char c = '\u5923';
System.out.println(c);  // Output: 夣

JSON:

{"text": "\u5923"}  // Value: 夣

Python:

char = '\u5923'
print(char)  # Output: 夣

Perl:

my $char = "\x{5923}";
print $char;  # Output: 夣

PHP:

$char = "\x{5923}";
echo $char;  // Output: 夣

Ruby:

char = "\u{5923}"
puts char  # Output: 夣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005923";  /* Display: 夣 */
}

HTML Decimal:

<p>HTML decimal: &#22819;</p>  <!-- Display: 夣 -->

HTML Hexadecimal:

<p>HTML hex: &#x5923;</p>  <!-- Display: 夣 -->

URL Encoding:

// 夣 URL encoding
https://unicodefinder.com/search.php?query=%E5%A4%A3

Encodings

MD5:

8e01383d66a1113ce01feb0911938ee4

SHA1:

9cb2d89186ebbd3d16a1fdad2efdd8038b4d6f75

Base64:

5aSj