Unicode Finder

"岀" U+5C80(CJK UNIFIED IDEOGRAPH-5C80)

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

Programming

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

Web

CSS
\005C80
HtmlDecimal
岀
HtmlHexadecimal
岀
Url
%E5%B2%80

Code

MD5
b424270ba6643d6f8722ea775bb8e553
Sha1
e38f49535f1779890c8f00128249eb034de6d439
Base64
5bKA

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5C80';
console.log(char);  // Output: 岀

Java:

char c = '\u5C80';
System.out.println(c);  // Output: 岀

JSON:

{"text": "\u5C80"}  // Value: 岀

Python:

char = '\u5C80'
print(char)  # Output: 岀

Perl:

my $char = "\x{5C80}";
print $char;  # Output: 岀

PHP:

$char = "\x{5C80}";
echo $char;  // Output: 岀

Ruby:

char = "\u{5C80}"
puts char  # Output: 岀

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23680;</p>  <!-- Display: 岀 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C80;</p>  <!-- Display: 岀 -->

URL Encoding:

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

Encodings

MD5:

b424270ba6643d6f8722ea775bb8e553

SHA1:

e38f49535f1779890c8f00128249eb034de6d439

Base64:

5bKA