Unicode Finder

"唓" U+5513(CJK UNIFIED IDEOGRAPH-5513)

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

Programming

C
\u5513
JavaScript
\u5513
Java
\u5513
Json
\u5513
Python
\u5513
Perl
\x{5513}
PHP
\x{5513}
Ruby
\u{5513}
Rust
\u{5513}
Go
\u5513

Web

CSS
\005513
HtmlDecimal
唓
HtmlHexadecimal
唓
Url
%E5%94%93

Code

MD5
bf1ef55e9e8698dee644b18f1249bd0b
Sha1
1b08b344bfede1e116d59b5695ddcdb383aad5f5
Base64
5ZST

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5513';
console.log(char);  // Output: 唓

Java:

char c = '\u5513';
System.out.println(c);  // Output: 唓

JSON:

{"text": "\u5513"}  // Value: 唓

Python:

char = '\u5513'
print(char)  # Output: 唓

Perl:

my $char = "\x{5513}";
print $char;  # Output: 唓

PHP:

$char = "\x{5513}";
echo $char;  // Output: 唓

Ruby:

char = "\u{5513}"
puts char  # Output: 唓

Rust:

let c = '\u{5513}';
println!("{}", c);  // Output: 唓

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005513";  /* Display: 唓 */
}

HTML Decimal:

<p>HTML decimal: &#21779;</p>  <!-- Display: 唓 -->

HTML Hexadecimal:

<p>HTML hex: &#x5513;</p>  <!-- Display: 唓 -->

URL Encoding:

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

Encodings

MD5:

bf1ef55e9e8698dee644b18f1249bd0b

SHA1:

1b08b344bfede1e116d59b5695ddcdb383aad5f5

Base64:

5ZST