C:
char c = '\uB5CD';
printf("%c\n", c); // Output: 뗍
JavaScript:
const char = '\uB5CD';
console.log(char); // Output: 뗍
Java:
char c = '\uB5CD';
System.out.println(c); // Output: 뗍
JSON:
{"text": "\uB5CD"} // Value: 뗍
Python:
char = '\uB5CD'
print(char) # Output: 뗍
Perl:
my $char = "\x{B5CD}";
print $char; # Output: 뗍
PHP:
$char = "\x{B5CD}";
echo $char; // Output: 뗍
Ruby:
char = "\u{B5CD}"
puts char # Output: 뗍
Rust:
let c = '\u{B5CD}';
println!("{}", c); // Output: 뗍
Go:
char := '\uB5CD'
fmt.Printf("%c\n", char) // Output: 뗍
CSS:
/* CSS content property */
.element::before {
content: "\00B5CD"; /* 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%97%8D
MD5:
3462e6cb84049d2116bf96eed8288ee8
SHA1:
aca0e25dd8e5e8f01adb81f8d8fa2d29d59e1400
Base64:
65eN