Unicode Finder

"唭" U+552D(CJK UNIFIED IDEOGRAPH-552D)

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

Programming

C
\u552D
JavaScript
\u552D
Java
\u552D
Json
\u552D
Python
\u552D
Perl
\x{552D}
PHP
\x{552D}
Ruby
\u{552D}
Rust
\u{552D}
Go
\u552D

Web

CSS
\00552D
HtmlDecimal
唭
HtmlHexadecimal
唭
Url
%E5%94%AD

Code

MD5
049ee7c662078e6ca244db9b1f51b1d3
Sha1
59c5e8ef49c0ee0dcee399d4e303ea7fadbe93bf
Base64
5ZSt

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u552D';
console.log(char);  // Output: 唭

Java:

char c = '\u552D';
System.out.println(c);  // Output: 唭

JSON:

{"text": "\u552D"}  // Value: 唭

Python:

char = '\u552D'
print(char)  # Output: 唭

Perl:

my $char = "\x{552D}";
print $char;  # Output: 唭

PHP:

$char = "\x{552D}";
echo $char;  // Output: 唭

Ruby:

char = "\u{552D}"
puts char  # Output: 唭

Rust:

let c = '\u{552D}';
println!("{}", c);  // Output: 唭

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00552D";  /* Display: 唭 */
}

HTML Decimal:

<p>HTML decimal: &#21805;</p>  <!-- Display: 唭 -->

HTML Hexadecimal:

<p>HTML hex: &#x552D;</p>  <!-- Display: 唭 -->

URL Encoding:

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

Encodings

MD5:

049ee7c662078e6ca244db9b1f51b1d3

SHA1:

59c5e8ef49c0ee0dcee399d4e303ea7fadbe93bf

Base64:

5ZSt