C:
char c = '\uB6C8';
printf("%c\n", c); // Output: 뛈
JavaScript:
const char = '\uB6C8';
console.log(char); // Output: 뛈
Java:
char c = '\uB6C8';
System.out.println(c); // Output: 뛈
JSON:
{"text": "\uB6C8"} // Value: 뛈
Python:
char = '\uB6C8'
print(char) # Output: 뛈
Perl:
my $char = "\x{B6C8}";
print $char; # Output: 뛈
PHP:
$char = "\x{B6C8}";
echo $char; // Output: 뛈
Ruby:
char = "\u{B6C8}"
puts char # Output: 뛈
Rust:
let c = '\u{B6C8}';
println!("{}", c); // Output: 뛈
Go:
char := '\uB6C8'
fmt.Printf("%c\n", char) // Output: 뛈
CSS:
/* CSS content property */
.element::before {
content: "\00B6C8"; /* 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%88
MD5:
604fd27d52aced730e5dfdfea37b3839
SHA1:
fbaad8b3e57c400fc5211de5d83caa3ad36946b4
Base64:
65uI