Unicode Finder

"坦" U+5766(CJK UNIFIED IDEOGRAPH-5766)

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

Programming

C
\u5766
JavaScript
\u5766
Java
\u5766
Json
\u5766
Python
\u5766
Perl
\x{5766}
PHP
\x{5766}
Ruby
\u{5766}
Rust
\u{5766}
Go
\u5766

Web

CSS
\005766
HtmlDecimal
坦
HtmlHexadecimal
坦
Url
%E5%9D%A6

Code

MD5
3956f51bf85a202e1077e5a9b0e26cd2
Sha1
f42c06705c855bde1ec736f476004b51c12f9230
Base64
5Z2m

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\u5766';
console.log(char);  // Output: 坦

Java:

char c = '\u5766';
System.out.println(c);  // Output: 坦

JSON:

{"text": "\u5766"}  // Value: 坦

Python:

char = '\u5766'
print(char)  # Output: 坦

Perl:

my $char = "\x{5766}";
print $char;  # Output: 坦

PHP:

$char = "\x{5766}";
echo $char;  // Output: 坦

Ruby:

char = "\u{5766}"
puts char  # Output: 坦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005766";  /* Display: 坦 */
}

HTML Decimal:

<p>HTML decimal: &#22374;</p>  <!-- Display: 坦 -->

HTML Hexadecimal:

<p>HTML hex: &#x5766;</p>  <!-- Display: 坦 -->

URL Encoding:

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

Encodings

MD5:

3956f51bf85a202e1077e5a9b0e26cd2

SHA1:

f42c06705c855bde1ec736f476004b51c12f9230

Base64:

5Z2m