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