Unicode Finder

"뎥" U+B3A5(HANGUL SYLLABLE DYEOT)

U+B3A5
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE DYEOT

Programming

C
\uB3A5
JavaScript
\uB3A5
Java
\uB3A5
Json
\uB3A5
Python
\uB3A5
Perl
\x{B3A5}
PHP
\x{B3A5}
Ruby
\u{B3A5}
Rust
\u{B3A5}
Go
\uB3A5

Web

CSS
\00B3A5
HtmlDecimal
뎥
HtmlHexadecimal
뎥
Url
%EB%8E%A5

Code

MD5
4a3dcd6b28384afd7a6906a4af45b2a2
Sha1
bbe40b2c5c30904bde49e028021c97fc9473982a
Base64
646l

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uB3A5';
console.log(char);  // Output: 뎥

Java:

char c = '\uB3A5';
System.out.println(c);  // Output: 뎥

JSON:

{"text": "\uB3A5"}  // Value: 뎥

Python:

char = '\uB3A5'
print(char)  # Output: 뎥

Perl:

my $char = "\x{B3A5}";
print $char;  # Output: 뎥

PHP:

$char = "\x{B3A5}";
echo $char;  // Output: 뎥

Ruby:

char = "\u{B3A5}"
puts char  # Output: 뎥

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45989;</p>  <!-- Display: 뎥 -->

HTML Hexadecimal:

<p>HTML hex: &#xB3A5;</p>  <!-- Display: 뎥 -->

URL Encoding:

// 뎥 URL encoding
https://unicodefinder.com/search.php?query=%EB%8E%A5

Encodings

MD5:

4a3dcd6b28384afd7a6906a4af45b2a2

SHA1:

bbe40b2c5c30904bde49e028021c97fc9473982a

Base64:

646l