C:
char c = '\uB6EC';
printf("%c\n", c); // Output: 뛬
JavaScript:
const char = '\uB6EC';
console.log(char); // Output: 뛬
Java:
char c = '\uB6EC';
System.out.println(c); // Output: 뛬
JSON:
{"text": "\uB6EC"} // Value: 뛬
Python:
char = '\uB6EC'
print(char) # Output: 뛬
Perl:
my $char = "\x{B6EC}";
print $char; # Output: 뛬
PHP:
$char = "\x{B6EC}";
echo $char; // Output: 뛬
Ruby:
char = "\u{B6EC}"
puts char # Output: 뛬
Rust:
let c = '\u{B6EC}';
println!("{}", c); // Output: 뛬
Go:
char := '\uB6EC'
fmt.Printf("%c\n", char) // Output: 뛬
CSS:
/* CSS content property */
.element::before {
content: "\00B6EC"; /* Display: 뛬 */
}
HTML Decimal:
<p>HTML decimal: 뛬</p> <!-- Display: 뛬 -->
HTML Hexadecimal:
<p>HTML hex: 뛬</p> <!-- Display: 뛬 -->
URL Encoding:
// 뛬 URL encoding
https://unicodefinder.com/search.php?query=%EB%9B%AC
MD5:
cdef1f10d984a98f17fdaa4a257b7382
SHA1:
b46555d116f8abbf032ca263bca2a3e05fcc33fe
Base64:
65us