Unicode Finder

"岔" U+5C94(CJK UNIFIED IDEOGRAPH-5C94)

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

Programming

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

Web

CSS
\005C94
HtmlDecimal
岔
HtmlHexadecimal
岔
Url
%E5%B2%94

Code

MD5
4d1ef35e7aaff7480b1acae4f8a58424
Sha1
ad08bb6953e56a02e5807be4e2b1bf21828f8e91
Base64
5bKU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5C94';
console.log(char);  // Output: 岔

Java:

char c = '\u5C94';
System.out.println(c);  // Output: 岔

JSON:

{"text": "\u5C94"}  // Value: 岔

Python:

char = '\u5C94'
print(char)  # Output: 岔

Perl:

my $char = "\x{5C94}";
print $char;  # Output: 岔

PHP:

$char = "\x{5C94}";
echo $char;  // Output: 岔

Ruby:

char = "\u{5C94}"
puts char  # Output: 岔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23700;</p>  <!-- Display: 岔 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C94;</p>  <!-- Display: 岔 -->

URL Encoding:

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

Encodings

MD5:

4d1ef35e7aaff7480b1acae4f8a58424

SHA1:

ad08bb6953e56a02e5807be4e2b1bf21828f8e91

Base64:

5bKU