C:
char c = '\uAD31';
printf("%c\n", c); // Output: 괱
JavaScript:
const char = '\uAD31';
console.log(char); // Output: 괱
Java:
char c = '\uAD31';
System.out.println(c); // Output: 괱
JSON:
{"text": "\uAD31"} // Value: 괱
Python:
char = '\uAD31'
print(char) # Output: 괱
Perl:
my $char = "\x{AD31}";
print $char; # Output: 괱
PHP:
$char = "\x{AD31}";
echo $char; // Output: 괱
Ruby:
char = "\u{AD31}"
puts char # Output: 괱
Rust:
let c = '\u{AD31}';
println!("{}", c); // Output: 괱
Go:
char := '\uAD31'
fmt.Printf("%c\n", char) // Output: 괱
CSS:
/* CSS content property */
.element::before {
content: "\00AD31"; /* 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%B1
MD5:
f3e3b04f104d503966594d1347ffe262
SHA1:
1707c62c6d13a357fadd6afc519ae8085ce47e18
Base64:
6rSx