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