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