Unicode Finder

"墓" U+5893(CJK UNIFIED IDEOGRAPH-5893)

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

Programming

C
\u5893
JavaScript
\u5893
Java
\u5893
Json
\u5893
Python
\u5893
Perl
\x{5893}
PHP
\x{5893}
Ruby
\u{5893}
Rust
\u{5893}
Go
\u5893

Web

CSS
\005893
HtmlDecimal
墓
HtmlHexadecimal
墓
Url
%E5%A2%93

Code

MD5
10466328b84ee688910b73ca1427668c
Sha1
d27252b64dcedbd352436139b4de7728e8b568e0
Base64
5aKT

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5893';
console.log(char);  // Output: 墓

Java:

char c = '\u5893';
System.out.println(c);  // Output: 墓

JSON:

{"text": "\u5893"}  // Value: 墓

Python:

char = '\u5893'
print(char)  # Output: 墓

Perl:

my $char = "\x{5893}";
print $char;  # Output: 墓

PHP:

$char = "\x{5893}";
echo $char;  // Output: 墓

Ruby:

char = "\u{5893}"
puts char  # Output: 墓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005893";  /* Display: 墓 */
}

HTML Decimal:

<p>HTML decimal: &#22675;</p>  <!-- Display: 墓 -->

HTML Hexadecimal:

<p>HTML hex: &#x5893;</p>  <!-- Display: 墓 -->

URL Encoding:

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

Encodings

MD5:

10466328b84ee688910b73ca1427668c

SHA1:

d27252b64dcedbd352436139b4de7728e8b568e0

Base64:

5aKT