Unicode Finder

"빈" U+BE48(HANGUL SYLLABLE BIN)

U+BE48
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BIN

Programming

C
\uBE48
JavaScript
\uBE48
Java
\uBE48
Json
\uBE48
Python
\uBE48
Perl
\x{BE48}
PHP
\x{BE48}
Ruby
\u{BE48}
Rust
\u{BE48}
Go
\uBE48

Web

CSS
\00BE48
HtmlDecimal
빈
HtmlHexadecimal
빈
Url
%EB%B9%88

Code

MD5
019181f57f32b2863fe38d07eb7b55c2
Sha1
f42f96d155a5e1188a926c3cd59c5a709bd9f571
Base64
67mI

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBE48';
console.log(char);  // Output: 빈

Java:

char c = '\uBE48';
System.out.println(c);  // Output: 빈

JSON:

{"text": "\uBE48"}  // Value: 빈

Python:

char = '\uBE48'
print(char)  # Output: 빈

Perl:

my $char = "\x{BE48}";
print $char;  # Output: 빈

PHP:

$char = "\x{BE48}";
echo $char;  // Output: 빈

Ruby:

char = "\u{BE48}"
puts char  # Output: 빈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48712;</p>  <!-- Display: 빈 -->

HTML Hexadecimal:

<p>HTML hex: &#xBE48;</p>  <!-- Display: 빈 -->

URL Encoding:

// 빈 URL encoding
https://unicodefinder.com/search.php?query=%EB%B9%88

Encodings

MD5:

019181f57f32b2863fe38d07eb7b55c2

SHA1:

f42f96d155a5e1188a926c3cd59c5a709bd9f571

Base64:

67mI