Unicode Finder

"빍" U+BE4D(HANGUL SYLLABLE BILG)

U+BE4D
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BILG

Programming

C
\uBE4D
JavaScript
\uBE4D
Java
\uBE4D
Json
\uBE4D
Python
\uBE4D
Perl
\x{BE4D}
PHP
\x{BE4D}
Ruby
\u{BE4D}
Rust
\u{BE4D}
Go
\uBE4D

Web

CSS
\00BE4D
HtmlDecimal
빍
HtmlHexadecimal
빍
Url
%EB%B9%8D

Code

MD5
a0ac67442308525da54e035467d79662
Sha1
645f8438481ab9821bce94e8bd8e586f69055205
Base64
67mN

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBE4D';
console.log(char);  // Output: 빍

Java:

char c = '\uBE4D';
System.out.println(c);  // Output: 빍

JSON:

{"text": "\uBE4D"}  // Value: 빍

Python:

char = '\uBE4D'
print(char)  # Output: 빍

Perl:

my $char = "\x{BE4D}";
print $char;  # Output: 빍

PHP:

$char = "\x{BE4D}";
echo $char;  // Output: 빍

Ruby:

char = "\u{BE4D}"
puts char  # Output: 빍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48717;</p>  <!-- Display: 빍 -->

HTML Hexadecimal:

<p>HTML hex: &#xBE4D;</p>  <!-- Display: 빍 -->

URL Encoding:

// 빍 URL encoding
https://unicodefinder.com/search.php?query=%EB%B9%8D

Encodings

MD5:

a0ac67442308525da54e035467d79662

SHA1:

645f8438481ab9821bce94e8bd8e586f69055205

Base64:

67mN