Unicode Finder

"屘" U+5C58(CJK UNIFIED IDEOGRAPH-5C58)

U+5C58
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5C58

Programming

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

Web

CSS
\005C58
HtmlDecimal
屘
HtmlHexadecimal
屘
Url
%E5%B1%98

Code

MD5
47e4e3cc4472deafd8ed0735afb8dba7
Sha1
f66ae1206492b21b99396cceefb0abecee2031e8
Base64
5bGY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C58';
console.log(char);  // Output: 屘

Java:

char c = '\u5C58';
System.out.println(c);  // Output: 屘

JSON:

{"text": "\u5C58"}  // Value: 屘

Python:

char = '\u5C58'
print(char)  # Output: 屘

Perl:

my $char = "\x{5C58}";
print $char;  # Output: 屘

PHP:

$char = "\x{5C58}";
echo $char;  // Output: 屘

Ruby:

char = "\u{5C58}"
puts char  # Output: 屘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23640;</p>  <!-- Display: 屘 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C58;</p>  <!-- Display: 屘 -->

URL Encoding:

// 屘 URL encoding
https://unicodefinder.com/search.php?query=%E5%B1%98

Encodings

MD5:

47e4e3cc4472deafd8ed0735afb8dba7

SHA1:

f66ae1206492b21b99396cceefb0abecee2031e8

Base64:

5bGY