Unicode Finder

"땧" U+B567(HANGUL SYLLABLE DDAEH)

U+B567
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDAEH

Programming

C
\uB567
JavaScript
\uB567
Java
\uB567
Json
\uB567
Python
\uB567
Perl
\x{B567}
PHP
\x{B567}
Ruby
\u{B567}
Rust
\u{B567}
Go
\uB567

Web

CSS
\00B567
HtmlDecimal
땧
HtmlHexadecimal
땧
Url
%EB%95%A7

Code

MD5
ac4230bd925393300ce6f7bfcd53f768
Sha1
e417084a4337fcd8ad2a666735fa8c799d9d6052
Base64
65Wn

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB567';
console.log(char);  // Output: 땧

Java:

char c = '\uB567';
System.out.println(c);  // Output: 땧

JSON:

{"text": "\uB567"}  // Value: 땧

Python:

char = '\uB567'
print(char)  # Output: 땧

Perl:

my $char = "\x{B567}";
print $char;  # Output: 땧

PHP:

$char = "\x{B567}";
echo $char;  // Output: 땧

Ruby:

char = "\u{B567}"
puts char  # Output: 땧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00B567";  /* Display: 땧 */
}

HTML Decimal:

<p>HTML decimal: &#46439;</p>  <!-- Display: 땧 -->

HTML Hexadecimal:

<p>HTML hex: &#xB567;</p>  <!-- Display: 땧 -->

URL Encoding:

// 땧 URL encoding
https://unicodefinder.com/search.php?query=%EB%95%A7

Encodings

MD5:

ac4230bd925393300ce6f7bfcd53f768

SHA1:

e417084a4337fcd8ad2a666735fa8c799d9d6052

Base64:

65Wn