Unicode Finder

"吇" U+5407(CJK UNIFIED IDEOGRAPH-5407)

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

Programming

C
\u5407
JavaScript
\u5407
Java
\u5407
Json
\u5407
Python
\u5407
Perl
\x{5407}
PHP
\x{5407}
Ruby
\u{5407}
Rust
\u{5407}
Go
\u5407

Web

CSS
\005407
HtmlDecimal
吇
HtmlHexadecimal
吇
Url
%E5%90%87

Code

MD5
ee96e30451ea66e37f0a4043e304db9b
Sha1
2f203b9a363e8f578484df49a812d3e05f909e8a
Base64
5ZCH

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\u5407';
console.log(char);  // Output: 吇

Java:

char c = '\u5407';
System.out.println(c);  // Output: 吇

JSON:

{"text": "\u5407"}  // Value: 吇

Python:

char = '\u5407'
print(char)  # Output: 吇

Perl:

my $char = "\x{5407}";
print $char;  # Output: 吇

PHP:

$char = "\x{5407}";
echo $char;  // Output: 吇

Ruby:

char = "\u{5407}"
puts char  # Output: 吇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005407";  /* Display: 吇 */
}

HTML Decimal:

<p>HTML decimal: &#21511;</p>  <!-- Display: 吇 -->

HTML Hexadecimal:

<p>HTML hex: &#x5407;</p>  <!-- Display: 吇 -->

URL Encoding:

// 吇 URL encoding
https://unicodefinder.com/search.php?query=%E5%90%87

Encodings

MD5:

ee96e30451ea66e37f0a4043e304db9b

SHA1:

2f203b9a363e8f578484df49a812d3e05f909e8a

Base64:

5ZCH