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