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