Unicode Finder

"傗" U+5097(CJK UNIFIED IDEOGRAPH-5097)

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

Programming

C
\u5097
JavaScript
\u5097
Java
\u5097
Json
\u5097
Python
\u5097
Perl
\x{5097}
PHP
\x{5097}
Ruby
\u{5097}
Rust
\u{5097}
Go
\u5097

Web

CSS
\005097
HtmlDecimal
傗
HtmlHexadecimal
傗
Url
%E5%82%97

Code

MD5
9875e152933cae9f3630dbd7393ad28f
Sha1
d3fdefbe66d2a15b672aa2cc2a85d50aee4001ef
Base64
5YKX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5097';
console.log(char);  // Output: 傗

Java:

char c = '\u5097';
System.out.println(c);  // Output: 傗

JSON:

{"text": "\u5097"}  // Value: 傗

Python:

char = '\u5097'
print(char)  # Output: 傗

Perl:

my $char = "\x{5097}";
print $char;  # Output: 傗

PHP:

$char = "\x{5097}";
echo $char;  // Output: 傗

Ruby:

char = "\u{5097}"
puts char  # Output: 傗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005097";  /* Display: 傗 */
}

HTML Decimal:

<p>HTML decimal: &#20631;</p>  <!-- Display: 傗 -->

HTML Hexadecimal:

<p>HTML hex: &#x5097;</p>  <!-- Display: 傗 -->

URL Encoding:

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

Encodings

MD5:

9875e152933cae9f3630dbd7393ad28f

SHA1:

d3fdefbe66d2a15b672aa2cc2a85d50aee4001ef

Base64:

5YKX