Unicode Finder

"哝" U+54DD(CJK UNIFIED IDEOGRAPH-54DD)

U+54DD
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-54DD

Programming

C
\u54DD
JavaScript
\u54DD
Java
\u54DD
Json
\u54DD
Python
\u54DD
Perl
\x{54DD}
PHP
\x{54DD}
Ruby
\u{54DD}
Rust
\u{54DD}
Go
\u54DD

Web

CSS
\0054DD
HtmlDecimal
哝
HtmlHexadecimal
哝
Url
%E5%93%9D

Code

MD5
20aff6eac15b4ffd2f46472bdbc2e813
Sha1
7dcfac0b558a78fbd57242b2a9af6c1512ad13ac
Base64
5ZOd

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u54DD';
console.log(char);  // Output: 哝

Java:

char c = '\u54DD';
System.out.println(c);  // Output: 哝

JSON:

{"text": "\u54DD"}  // Value: 哝

Python:

char = '\u54DD'
print(char)  # Output: 哝

Perl:

my $char = "\x{54DD}";
print $char;  # Output: 哝

PHP:

$char = "\x{54DD}";
echo $char;  // Output: 哝

Ruby:

char = "\u{54DD}"
puts char  # Output: 哝

Rust:

let c = '\u{54DD}';
println!("{}", c);  // Output: 哝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0054DD";  /* Display: 哝 */
}

HTML Decimal:

<p>HTML decimal: &#21725;</p>  <!-- Display: 哝 -->

HTML Hexadecimal:

<p>HTML hex: &#x54DD;</p>  <!-- Display: 哝 -->

URL Encoding:

// 哝 URL encoding
https://unicodefinder.com/search.php?query=%E5%93%9D

Encodings

MD5:

20aff6eac15b4ffd2f46472bdbc2e813

SHA1:

7dcfac0b558a78fbd57242b2a9af6c1512ad13ac

Base64:

5ZOd