Unicode Finder

"뗵" U+B5F5(HANGUL SYLLABLE DDYEG)

U+B5F5
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE DDYEG

Programming

C
\uB5F5
JavaScript
\uB5F5
Java
\uB5F5
Json
\uB5F5
Python
\uB5F5
Perl
\x{B5F5}
PHP
\x{B5F5}
Ruby
\u{B5F5}
Rust
\u{B5F5}
Go
\uB5F5

Web

CSS
\00B5F5
HtmlDecimal
뗵
HtmlHexadecimal
뗵
Url
%EB%97%B5

Code

MD5
30eed2e650f97ca3cd0d53473db85fe3
Sha1
b97d3c46af3137e908fc65b65eb038fb379704b0
Base64
65e1

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB5F5';
console.log(char);  // Output: 뗵

Java:

char c = '\uB5F5';
System.out.println(c);  // Output: 뗵

JSON:

{"text": "\uB5F5"}  // Value: 뗵

Python:

char = '\uB5F5'
print(char)  # Output: 뗵

Perl:

my $char = "\x{B5F5}";
print $char;  # Output: 뗵

PHP:

$char = "\x{B5F5}";
echo $char;  // Output: 뗵

Ruby:

char = "\u{B5F5}"
puts char  # Output: 뗵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46581;</p>  <!-- Display: 뗵 -->

HTML Hexadecimal:

<p>HTML hex: &#xB5F5;</p>  <!-- Display: 뗵 -->

URL Encoding:

// 뗵 URL encoding
https://unicodefinder.com/search.php?query=%EB%97%B5

Encodings

MD5:

30eed2e650f97ca3cd0d53473db85fe3

SHA1:

b97d3c46af3137e908fc65b65eb038fb379704b0

Base64:

65e1