Unicode Finder

"幵" U+5E75(CJK UNIFIED IDEOGRAPH-5E75)

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

Programming

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

Web

CSS
\005E75
HtmlDecimal
幵
HtmlHexadecimal
幵
Url
%E5%B9%B5

Code

MD5
13c90fadd659f99ef67319b8043c6d6a
Sha1
dc3a10fa15442f076a88ce95a4cb7eda39a0ec4e
Base64
5bm1

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5E75';
console.log(char);  // Output: 幵

Java:

char c = '\u5E75';
System.out.println(c);  // Output: 幵

JSON:

{"text": "\u5E75"}  // Value: 幵

Python:

char = '\u5E75'
print(char)  # Output: 幵

Perl:

my $char = "\x{5E75}";
print $char;  # Output: 幵

PHP:

$char = "\x{5E75}";
echo $char;  // Output: 幵

Ruby:

char = "\u{5E75}"
puts char  # Output: 幵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24181;</p>  <!-- Display: 幵 -->

HTML Hexadecimal:

<p>HTML hex: &#x5E75;</p>  <!-- Display: 幵 -->

URL Encoding:

// 幵 URL encoding
https://unicodefinder.com/search.php?query=%E5%B9%B5

Encodings

MD5:

13c90fadd659f99ef67319b8043c6d6a

SHA1:

dc3a10fa15442f076a88ce95a4cb7eda39a0ec4e

Base64:

5bm1