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