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