C:
char c = '\uAD30';
printf("%c\n", c); // Output: 괰
JavaScript:
const char = '\uAD30';
console.log(char); // Output: 괰
Java:
char c = '\uAD30';
System.out.println(c); // Output: 괰
JSON:
{"text": "\uAD30"} // Value: 괰
Python:
char = '\uAD30'
print(char) # Output: 괰
Perl:
my $char = "\x{AD30}";
print $char; # Output: 괰
PHP:
$char = "\x{AD30}";
echo $char; // Output: 괰
Ruby:
char = "\u{AD30}"
puts char # Output: 괰
Rust:
let c = '\u{AD30}';
println!("{}", c); // Output: 괰
Go:
char := '\uAD30'
fmt.Printf("%c\n", char) // Output: 괰
CSS:
/* CSS content property */
.element::before {
content: "\00AD30"; /* 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=%EA%B4%B0
MD5:
f30789d80ff4fe63d3ba71dd965af117
SHA1:
92712eb17bc062eed8ce700e91ed65e792326849
Base64:
6rSw