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