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