Unicode Finder

"岣" U+5CA3(CJK UNIFIED IDEOGRAPH-5CA3)

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

Programming

C
\u5CA3
JavaScript
\u5CA3
Java
\u5CA3
Json
\u5CA3
Python
\u5CA3
Perl
\x{5CA3}
PHP
\x{5CA3}
Ruby
\u{5CA3}
Rust
\u{5CA3}
Go
\u5CA3

Web

CSS
\005CA3
HtmlDecimal
岣
HtmlHexadecimal
岣
Url
%E5%B2%A3

Code

MD5
b0ebb9651fe64ff80c307e4dc80ff6e6
Sha1
453598ab8829bc70236148a1347fcddee27e9fdf
Base64
5bKj

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5CA3';
console.log(char);  // Output: 岣

Java:

char c = '\u5CA3';
System.out.println(c);  // Output: 岣

JSON:

{"text": "\u5CA3"}  // Value: 岣

Python:

char = '\u5CA3'
print(char)  # Output: 岣

Perl:

my $char = "\x{5CA3}";
print $char;  # Output: 岣

PHP:

$char = "\x{5CA3}";
echo $char;  // Output: 岣

Ruby:

char = "\u{5CA3}"
puts char  # Output: 岣

Rust:

let c = '\u{5CA3}';
println!("{}", c);  // Output: 岣

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005CA3";  /* Display: 岣 */
}

HTML Decimal:

<p>HTML decimal: &#23715;</p>  <!-- Display: 岣 -->

HTML Hexadecimal:

<p>HTML hex: &#x5CA3;</p>  <!-- Display: 岣 -->

URL Encoding:

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

Encodings

MD5:

b0ebb9651fe64ff80c307e4dc80ff6e6

SHA1:

453598ab8829bc70236148a1347fcddee27e9fdf

Base64:

5bKj