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