Unicode Finder

"墒" U+5892(CJK UNIFIED IDEOGRAPH-5892)

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

Programming

C
\u5892
JavaScript
\u5892
Java
\u5892
Json
\u5892
Python
\u5892
Perl
\x{5892}
PHP
\x{5892}
Ruby
\u{5892}
Rust
\u{5892}
Go
\u5892

Web

CSS
\005892
HtmlDecimal
墒
HtmlHexadecimal
墒
Url
%E5%A2%92

Code

MD5
8185690173a102fff0e3e77a36036990
Sha1
1c860c2575f72871dbf0dbe04a989d288bf82188
Base64
5aKS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5892';
console.log(char);  // Output: 墒

Java:

char c = '\u5892';
System.out.println(c);  // Output: 墒

JSON:

{"text": "\u5892"}  // Value: 墒

Python:

char = '\u5892'
print(char)  # Output: 墒

Perl:

my $char = "\x{5892}";
print $char;  # Output: 墒

PHP:

$char = "\x{5892}";
echo $char;  // Output: 墒

Ruby:

char = "\u{5892}"
puts char  # Output: 墒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005892";  /* Display: 墒 */
}

HTML Decimal:

<p>HTML decimal: &#22674;</p>  <!-- Display: 墒 -->

HTML Hexadecimal:

<p>HTML hex: &#x5892;</p>  <!-- Display: 墒 -->

URL Encoding:

// 墒 URL encoding
https://unicodefinder.com/search.php?query=%E5%A2%92

Encodings

MD5:

8185690173a102fff0e3e77a36036990

SHA1:

1c860c2575f72871dbf0dbe04a989d288bf82188

Base64:

5aKS