Unicode Finder

"墭" U+58AD(CJK UNIFIED IDEOGRAPH-58AD)

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

Programming

C
\u58AD
JavaScript
\u58AD
Java
\u58AD
Json
\u58AD
Python
\u58AD
Perl
\x{58AD}
PHP
\x{58AD}
Ruby
\u{58AD}
Rust
\u{58AD}
Go
\u58AD

Web

CSS
\0058AD
HtmlDecimal
墭
HtmlHexadecimal
墭
Url
%E5%A2%AD

Code

MD5
06c7714abb2899a49f52ea5c41b69f8d
Sha1
87de45eb74ebfb2899846f2020c5f54726bf31ab
Base64
5aKt

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u58AD';
console.log(char);  // Output: 墭

Java:

char c = '\u58AD';
System.out.println(c);  // Output: 墭

JSON:

{"text": "\u58AD"}  // Value: 墭

Python:

char = '\u58AD'
print(char)  # Output: 墭

Perl:

my $char = "\x{58AD}";
print $char;  # Output: 墭

PHP:

$char = "\x{58AD}";
echo $char;  // Output: 墭

Ruby:

char = "\u{58AD}"
puts char  # Output: 墭

Rust:

let c = '\u{58AD}';
println!("{}", c);  // Output: 墭

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0058AD";  /* Display: 墭 */
}

HTML Decimal:

<p>HTML decimal: &#22701;</p>  <!-- Display: 墭 -->

HTML Hexadecimal:

<p>HTML hex: &#x58AD;</p>  <!-- Display: 墭 -->

URL Encoding:

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

Encodings

MD5:

06c7714abb2899a49f52ea5c41b69f8d

SHA1:

87de45eb74ebfb2899846f2020c5f54726bf31ab

Base64:

5aKt