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