Unicode Finder

"唫" U+552B(CJK UNIFIED IDEOGRAPH-552B)

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

Programming

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

Web

CSS
\00552B
HtmlDecimal
唫
HtmlHexadecimal
唫
Url
%E5%94%AB

Code

MD5
19d06347666738ef627d45fb5597e293
Sha1
a7d2e826df787cbc5dcb34968a75379c84185bca
Base64
5ZSr

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u552B';
console.log(char);  // Output: 唫

Java:

char c = '\u552B';
System.out.println(c);  // Output: 唫

JSON:

{"text": "\u552B"}  // Value: 唫

Python:

char = '\u552B'
print(char)  # Output: 唫

Perl:

my $char = "\x{552B}";
print $char;  # Output: 唫

PHP:

$char = "\x{552B}";
echo $char;  // Output: 唫

Ruby:

char = "\u{552B}"
puts char  # Output: 唫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21803;</p>  <!-- Display: 唫 -->

HTML Hexadecimal:

<p>HTML hex: &#x552B;</p>  <!-- Display: 唫 -->

URL Encoding:

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

Encodings

MD5:

19d06347666738ef627d45fb5597e293

SHA1:

a7d2e826df787cbc5dcb34968a75379c84185bca

Base64:

5ZSr