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