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