Unicode Finder

"또" U+B610(HANGUL SYLLABLE DDO)

U+B610
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE DDO

Programming

C
\uB610
JavaScript
\uB610
Java
\uB610
Json
\uB610
Python
\uB610
Perl
\x{B610}
PHP
\x{B610}
Ruby
\u{B610}
Rust
\u{B610}
Go
\uB610

Web

CSS
\00B610
HtmlDecimal
또
HtmlHexadecimal
또
Url
%EB%98%90

Code

MD5
4ad93346195b60bff0e9d529f72f98eb
Sha1
e8a27bd50dd27c6857a003b5d44185464bdae4ba
Base64
65iQ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uB610';
console.log(char);  // Output: 또

Java:

char c = '\uB610';
System.out.println(c);  // Output: 또

JSON:

{"text": "\uB610"}  // Value: 또

Python:

char = '\uB610'
print(char)  # Output: 또

Perl:

my $char = "\x{B610}";
print $char;  # Output: 또

PHP:

$char = "\x{B610}";
echo $char;  // Output: 또

Ruby:

char = "\u{B610}"
puts char  # Output: 또

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46608;</p>  <!-- Display: 또 -->

HTML Hexadecimal:

<p>HTML hex: &#xB610;</p>  <!-- Display: 또 -->

URL Encoding:

// 또 URL encoding
https://unicodefinder.com/search.php?query=%EB%98%90

Encodings

MD5:

4ad93346195b60bff0e9d529f72f98eb

SHA1:

e8a27bd50dd27c6857a003b5d44185464bdae4ba

Base64:

65iQ