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