Unicode Finder

"븭" U+BE2D(HANGUL SYLLABLE BYINJ)

U+BE2D
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BYINJ

Programming

C
\uBE2D
JavaScript
\uBE2D
Java
\uBE2D
Json
\uBE2D
Python
\uBE2D
Perl
\x{BE2D}
PHP
\x{BE2D}
Ruby
\u{BE2D}
Rust
\u{BE2D}
Go
\uBE2D

Web

CSS
\00BE2D
HtmlDecimal
븭
HtmlHexadecimal
븭
Url
%EB%B8%AD

Code

MD5
4a88b0aed940a1f42cd38f75c1ffe147
Sha1
836ef932c6839f3960ade023fb0dc9d5b6a21353
Base64
67it

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBE2D';
console.log(char);  // Output: 븭

Java:

char c = '\uBE2D';
System.out.println(c);  // Output: 븭

JSON:

{"text": "\uBE2D"}  // Value: 븭

Python:

char = '\uBE2D'
print(char)  # Output: 븭

Perl:

my $char = "\x{BE2D}";
print $char;  # Output: 븭

PHP:

$char = "\x{BE2D}";
echo $char;  // Output: 븭

Ruby:

char = "\u{BE2D}"
puts char  # Output: 븭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48685;</p>  <!-- Display: 븭 -->

HTML Hexadecimal:

<p>HTML hex: &#xBE2D;</p>  <!-- Display: 븭 -->

URL Encoding:

// 븭 URL encoding
https://unicodefinder.com/search.php?query=%EB%B8%AD

Encodings

MD5:

4a88b0aed940a1f42cd38f75c1ffe147

SHA1:

836ef932c6839f3960ade023fb0dc9d5b6a21353

Base64:

67it