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