Unicode Finder

"븍" U+BE0D(HANGUL SYLLABLE BEUG)

U+BE0D
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE BEUG

Programming

C
\uBE0D
JavaScript
\uBE0D
Java
\uBE0D
Json
\uBE0D
Python
\uBE0D
Perl
\x{BE0D}
PHP
\x{BE0D}
Ruby
\u{BE0D}
Rust
\u{BE0D}
Go
\uBE0D

Web

CSS
\00BE0D
HtmlDecimal
븍
HtmlHexadecimal
븍
Url
%EB%B8%8D

Code

MD5
e82aa8a7b63ad46d6792f7a20c4d261b
Sha1
e72d9eb9f9a1f3f438d9fa2cd1a7c23a3b177b9a
Base64
67iN

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uBE0D';
console.log(char);  // Output: 븍

Java:

char c = '\uBE0D';
System.out.println(c);  // Output: 븍

JSON:

{"text": "\uBE0D"}  // Value: 븍

Python:

char = '\uBE0D'
print(char)  # Output: 븍

Perl:

my $char = "\x{BE0D}";
print $char;  # Output: 븍

PHP:

$char = "\x{BE0D}";
echo $char;  // Output: 븍

Ruby:

char = "\u{BE0D}"
puts char  # Output: 븍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#48653;</p>  <!-- Display: 븍 -->

HTML Hexadecimal:

<p>HTML hex: &#xBE0D;</p>  <!-- Display: 븍 -->

URL Encoding:

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

Encodings

MD5:

e82aa8a7b63ad46d6792f7a20c4d261b

SHA1:

e72d9eb9f9a1f3f438d9fa2cd1a7c23a3b177b9a

Base64:

67iN