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