Unicode Finder

"븜" U+BE1C(HANGUL SYLLABLE BEUM)

U+BE1C
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BEUM

Programming

C
\uBE1C
JavaScript
\uBE1C
Java
\uBE1C
Json
\uBE1C
Python
\uBE1C
Perl
\x{BE1C}
PHP
\x{BE1C}
Ruby
\u{BE1C}
Rust
\u{BE1C}
Go
\uBE1C

Web

CSS
\00BE1C
HtmlDecimal
븜
HtmlHexadecimal
븜
Url
%EB%B8%9C

Code

MD5
0a6e7394e0731e2d4183005ba478ac4d
Sha1
27b1d14d87d072eae141cf664d9dab27dc243c8e
Base64
67ic

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBE1C';
console.log(char);  // Output: 븜

Java:

char c = '\uBE1C';
System.out.println(c);  // Output: 븜

JSON:

{"text": "\uBE1C"}  // Value: 븜

Python:

char = '\uBE1C'
print(char)  # Output: 븜

Perl:

my $char = "\x{BE1C}";
print $char;  # Output: 븜

PHP:

$char = "\x{BE1C}";
echo $char;  // Output: 븜

Ruby:

char = "\u{BE1C}"
puts char  # Output: 븜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48668;</p>  <!-- Display: 븜 -->

HTML Hexadecimal:

<p>HTML hex: &#xBE1C;</p>  <!-- Display: 븜 -->

URL Encoding:

// 븜 URL encoding
https://unicodefinder.com/search.php?query=%EB%B8%9C

Encodings

MD5:

0a6e7394e0731e2d4183005ba478ac4d

SHA1:

27b1d14d87d072eae141cf664d9dab27dc243c8e

Base64:

67ic