Unicode Finder

"墫" U+58AB(CJK UNIFIED IDEOGRAPH-58AB)

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

Programming

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

Web

CSS
\0058AB
HtmlDecimal
墫
HtmlHexadecimal
墫
Url
%E5%A2%AB

Code

MD5
6b2b51b25ced3b4909901eec7c86b958
Sha1
837927ce40ac3ed62ca01c37028ebf1765f9e2a4
Base64
5aKr

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u58AB';
console.log(char);  // Output: 墫

Java:

char c = '\u58AB';
System.out.println(c);  // Output: 墫

JSON:

{"text": "\u58AB"}  // Value: 墫

Python:

char = '\u58AB'
print(char)  # Output: 墫

Perl:

my $char = "\x{58AB}";
print $char;  # Output: 墫

PHP:

$char = "\x{58AB}";
echo $char;  // Output: 墫

Ruby:

char = "\u{58AB}"
puts char  # Output: 墫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22699;</p>  <!-- Display: 墫 -->

HTML Hexadecimal:

<p>HTML hex: &#x58AB;</p>  <!-- Display: 墫 -->

URL Encoding:

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

Encodings

MD5:

6b2b51b25ced3b4909901eec7c86b958

SHA1:

837927ce40ac3ed62ca01c37028ebf1765f9e2a4

Base64:

5aKr