Unicode Finder

"在" U+5728(CJK UNIFIED IDEOGRAPH-5728)

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

Programming

C
\u5728
JavaScript
\u5728
Java
\u5728
Json
\u5728
Python
\u5728
Perl
\x{5728}
PHP
\x{5728}
Ruby
\u{5728}
Rust
\u{5728}
Go
\u5728

Web

CSS
\005728
HtmlDecimal
在
HtmlHexadecimal
在
Url
%E5%9C%A8

Code

MD5
241d47a3ee97f044c1f043b9ea81855b
Sha1
686b703f41f3d5f33b3f36dc2444e59469326078
Base64
5Zyo

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5728';
console.log(char);  // Output: 在

Java:

char c = '\u5728';
System.out.println(c);  // Output: 在

JSON:

{"text": "\u5728"}  // Value: 在

Python:

char = '\u5728'
print(char)  # Output: 在

Perl:

my $char = "\x{5728}";
print $char;  # Output: 在

PHP:

$char = "\x{5728}";
echo $char;  // Output: 在

Ruby:

char = "\u{5728}"
puts char  # Output: 在

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005728";  /* Display: 在 */
}

HTML Decimal:

<p>HTML decimal: &#22312;</p>  <!-- Display: 在 -->

HTML Hexadecimal:

<p>HTML hex: &#x5728;</p>  <!-- Display: 在 -->

URL Encoding:

// 在 URL encoding
https://unicodefinder.com/search.php?query=%E5%9C%A8

Encodings

MD5:

241d47a3ee97f044c1f043b9ea81855b

SHA1:

686b703f41f3d5f33b3f36dc2444e59469326078

Base64:

5Zyo