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