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