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