Unicode Finder

"傀" U+5080(CJK UNIFIED IDEOGRAPH-5080)

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

Programming

C
\u5080
JavaScript
\u5080
Java
\u5080
Json
\u5080
Python
\u5080
Perl
\x{5080}
PHP
\x{5080}
Ruby
\u{5080}
Rust
\u{5080}
Go
\u5080

Web

CSS
\005080
HtmlDecimal
傀
HtmlHexadecimal
傀
Url
%E5%82%80

Code

MD5
efbb9d6e1f8838beb893252922c43549
Sha1
466e27ff233325016741b71d6ec6425ec3f88108
Base64
5YKA

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5080';
console.log(char);  // Output: 傀

Java:

char c = '\u5080';
System.out.println(c);  // Output: 傀

JSON:

{"text": "\u5080"}  // Value: 傀

Python:

char = '\u5080'
print(char)  # Output: 傀

Perl:

my $char = "\x{5080}";
print $char;  # Output: 傀

PHP:

$char = "\x{5080}";
echo $char;  // Output: 傀

Ruby:

char = "\u{5080}"
puts char  # Output: 傀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005080";  /* Display: 傀 */
}

HTML Decimal:

<p>HTML decimal: &#20608;</p>  <!-- Display: 傀 -->

HTML Hexadecimal:

<p>HTML hex: &#x5080;</p>  <!-- Display: 傀 -->

URL Encoding:

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

Encodings

MD5:

efbb9d6e1f8838beb893252922c43549

SHA1:

466e27ff233325016741b71d6ec6425ec3f88108

Base64:

5YKA