Unicode Finder

"墑" U+5891(CJK UNIFIED IDEOGRAPH-5891)

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

Programming

C
\u5891
JavaScript
\u5891
Java
\u5891
Json
\u5891
Python
\u5891
Perl
\x{5891}
PHP
\x{5891}
Ruby
\u{5891}
Rust
\u{5891}
Go
\u5891

Web

CSS
\005891
HtmlDecimal
墑
HtmlHexadecimal
墑
Url
%E5%A2%91

Code

MD5
391a48622a21bbc45121f862321a5bde
Sha1
3f069ddf350d25b402f1ee7cb09acf4caf00d408
Base64
5aKR

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5891';
console.log(char);  // Output: 墑

Java:

char c = '\u5891';
System.out.println(c);  // Output: 墑

JSON:

{"text": "\u5891"}  // Value: 墑

Python:

char = '\u5891'
print(char)  # Output: 墑

Perl:

my $char = "\x{5891}";
print $char;  # Output: 墑

PHP:

$char = "\x{5891}";
echo $char;  // Output: 墑

Ruby:

char = "\u{5891}"
puts char  # Output: 墑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005891";  /* Display: 墑 */
}

HTML Decimal:

<p>HTML decimal: &#22673;</p>  <!-- Display: 墑 -->

HTML Hexadecimal:

<p>HTML hex: &#x5891;</p>  <!-- Display: 墑 -->

URL Encoding:

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

Encodings

MD5:

391a48622a21bbc45121f862321a5bde

SHA1:

3f069ddf350d25b402f1ee7cb09acf4caf00d408

Base64:

5aKR