Unicode Finder

"唗" U+5517(CJK UNIFIED IDEOGRAPH-5517)

U+5517
블록 이름
CJK Unified Ideographs
이름
CJK UNIFIED IDEOGRAPH-5517

Programming

C
\u5517
JavaScript
\u5517
Java
\u5517
Json
\u5517
Python
\u5517
Perl
\x{5517}
PHP
\x{5517}
Ruby
\u{5517}
Rust
\u{5517}
Go
\u5517

Web

CSS
\005517
HtmlDecimal
唗
HtmlHexadecimal
唗
Url
%E5%94%97

Code

MD5
e01ea6645a181187c0dd0ad1d369229f
Sha1
2ede7a5f7d6d5300192bdc06583656924c488c99
Base64
5ZSX

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\u5517';
console.log(char);  // Output: 唗

Java:

char c = '\u5517';
System.out.println(c);  // Output: 唗

JSON:

{"text": "\u5517"}  // Value: 唗

Python:

char = '\u5517'
print(char)  # Output: 唗

Perl:

my $char = "\x{5517}";
print $char;  # Output: 唗

PHP:

$char = "\x{5517}";
echo $char;  // Output: 唗

Ruby:

char = "\u{5517}"
puts char  # Output: 唗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005517";  /* Display: 唗 */
}

HTML Decimal:

<p>HTML decimal: &#21783;</p>  <!-- Display: 唗 -->

HTML Hexadecimal:

<p>HTML hex: &#x5517;</p>  <!-- Display: 唗 -->

URL Encoding:

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

Encodings

MD5:

e01ea6645a181187c0dd0ad1d369229f

SHA1:

2ede7a5f7d6d5300192bdc06583656924c488c99

Base64:

5ZSX