Unicode Finder

"屲" U+5C72(CJK UNIFIED IDEOGRAPH-5C72)

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

Programming

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

Web

CSS
\005C72
HtmlDecimal
屲
HtmlHexadecimal
屲
Url
%E5%B1%B2

Code

MD5
9f505d119e35fd4b3847a4ee9a360272
Sha1
39742f65a70a0a1b5417377f4c49588fe7867030
Base64
5bGy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5C72';
console.log(char);  // Output: 屲

Java:

char c = '\u5C72';
System.out.println(c);  // Output: 屲

JSON:

{"text": "\u5C72"}  // Value: 屲

Python:

char = '\u5C72'
print(char)  # Output: 屲

Perl:

my $char = "\x{5C72}";
print $char;  # Output: 屲

PHP:

$char = "\x{5C72}";
echo $char;  // Output: 屲

Ruby:

char = "\u{5C72}"
puts char  # Output: 屲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23666;</p>  <!-- Display: 屲 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C72;</p>  <!-- Display: 屲 -->

URL Encoding:

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

Encodings

MD5:

9f505d119e35fd4b3847a4ee9a360272

SHA1:

39742f65a70a0a1b5417377f4c49588fe7867030

Base64:

5bGy