Unicode Finder

"롵" U+B875(HANGUL SYLLABLE ROT)

U+B875
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE ROT

Programming

C
\uB875
JavaScript
\uB875
Java
\uB875
Json
\uB875
Python
\uB875
Perl
\x{B875}
PHP
\x{B875}
Ruby
\u{B875}
Rust
\u{B875}
Go
\uB875

Web

CSS
\00B875
HtmlDecimal
롵
HtmlHexadecimal
롵
Url
%EB%A1%B5

Code

MD5
06a9f51ebf68c63a64c60de238983dd0
Sha1
a305fc4a814deaf36cab2dd661666f7640d22976
Base64
66G1

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB875';
console.log(char);  // Output: 롵

Java:

char c = '\uB875';
System.out.println(c);  // Output: 롵

JSON:

{"text": "\uB875"}  // Value: 롵

Python:

char = '\uB875'
print(char)  # Output: 롵

Perl:

my $char = "\x{B875}";
print $char;  # Output: 롵

PHP:

$char = "\x{B875}";
echo $char;  // Output: 롵

Ruby:

char = "\u{B875}"
puts char  # Output: 롵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47221;</p>  <!-- Display: 롵 -->

HTML Hexadecimal:

<p>HTML hex: &#xB875;</p>  <!-- Display: 롵 -->

URL Encoding:

// 롵 URL encoding
https://unicodefinder.com/search.php?query=%EB%A1%B5

Encodings

MD5:

06a9f51ebf68c63a64c60de238983dd0

SHA1:

a305fc4a814deaf36cab2dd661666f7640d22976

Base64:

66G1