Unicode Finder

"墟" U+589F(CJK UNIFIED IDEOGRAPH-589F)

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

Programming

C
\u589F
JavaScript
\u589F
Java
\u589F
Json
\u589F
Python
\u589F
Perl
\x{589F}
PHP
\x{589F}
Ruby
\u{589F}
Rust
\u{589F}
Go
\u589F

Web

CSS
\00589F
HtmlDecimal
墟
HtmlHexadecimal
墟
Url
%E5%A2%9F

Code

MD5
6d553eb39b6203466dca65267bfbfee4
Sha1
70f125a7a57045da4f8c1b77639630ef2cf6d6dc
Base64
5aKf

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u589F';
console.log(char);  // Output: 墟

Java:

char c = '\u589F';
System.out.println(c);  // Output: 墟

JSON:

{"text": "\u589F"}  // Value: 墟

Python:

char = '\u589F'
print(char)  # Output: 墟

Perl:

my $char = "\x{589F}";
print $char;  # Output: 墟

PHP:

$char = "\x{589F}";
echo $char;  // Output: 墟

Ruby:

char = "\u{589F}"
puts char  # Output: 墟

Rust:

let c = '\u{589F}';
println!("{}", c);  // Output: 墟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00589F";  /* Display: 墟 */
}

HTML Decimal:

<p>HTML decimal: &#22687;</p>  <!-- Display: 墟 -->

HTML Hexadecimal:

<p>HTML hex: &#x589F;</p>  <!-- Display: 墟 -->

URL Encoding:

// 墟 URL encoding
https://unicodefinder.com/search.php?query=%E5%A2%9F

Encodings

MD5:

6d553eb39b6203466dca65267bfbfee4

SHA1:

70f125a7a57045da4f8c1b77639630ef2cf6d6dc

Base64:

5aKf