Unicode Finder

"傐" U+5090(CJK UNIFIED IDEOGRAPH-5090)

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

Programming

C
\u5090
JavaScript
\u5090
Java
\u5090
Json
\u5090
Python
\u5090
Perl
\x{5090}
PHP
\x{5090}
Ruby
\u{5090}
Rust
\u{5090}
Go
\u5090

Web

CSS
\005090
HtmlDecimal
傐
HtmlHexadecimal
傐
Url
%E5%82%90

Code

MD5
a36112803c4ac0e898c3d975e588ebca
Sha1
d860d1470164fed088cb2494d9a5e6a181f0b733
Base64
5YKQ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5090';
console.log(char);  // Output: 傐

Java:

char c = '\u5090';
System.out.println(c);  // Output: 傐

JSON:

{"text": "\u5090"}  // Value: 傐

Python:

char = '\u5090'
print(char)  # Output: 傐

Perl:

my $char = "\x{5090}";
print $char;  # Output: 傐

PHP:

$char = "\x{5090}";
echo $char;  // Output: 傐

Ruby:

char = "\u{5090}"
puts char  # Output: 傐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005090";  /* Display: 傐 */
}

HTML Decimal:

<p>HTML decimal: &#20624;</p>  <!-- Display: 傐 -->

HTML Hexadecimal:

<p>HTML hex: &#x5090;</p>  <!-- Display: 傐 -->

URL Encoding:

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

Encodings

MD5:

a36112803c4ac0e898c3d975e588ebca

SHA1:

d860d1470164fed088cb2494d9a5e6a181f0b733

Base64:

5YKQ